/* 全体の背景 */
svg {
    background-color: #202020;
}

/* 線の基本的なスタイル */
path {
    stroke: #fff;
    stroke-width: 2;
}

/* 基本のフォント */
text {
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
    fill: #fff;
}

/* テキストボックスの基本的なスタイル */
g.textbox rect {
    fill: transparent;
    stroke: #fff;
    stroke-width: 2;
}

/* 勝ち上がりの線 */
path.win {
    stroke: #e24d42;
    stroke-width: 4;
    stroke-linecap: round;
    z-index: 1;
}
/* 縦方向の線 */
path.row {
    stroke-linecap: round;
}

/* 優勝の枠 */
g.textbox.victory rect {
    fill: #202020;
}
/* 優勝確定時の文字 */
g.textbox.victory.win text {
    fill: #e24d42;
}
/* 優勝確定時の枠 */
g.textbox.victory.win rect {
    stroke: #e24d42;
}

/* 参加者の枠 */
g.member rect {
    fill: #202020;
}

/* 敗退者を目立たなくした際の参加者の文字 */
g.member.defeated text {
    fill: #666;
}
/* 敗退者を目立たなくした際の参加者の枠 */
g.member.defeated rect {
    stroke: #666;
}

/* 優勝した参加者のスタイル */
g.member.victory {
}

/* スコアのスタイル */
text.score {
}

/* 注釈のスタイル */
.comment {
    font-size: 65%;
}

tspan.link a {
    fill: #45bde8;
}
