@charset "UTF-8";

/* ランキング全体ラッパー */
.tnsb-ranking-wrapper {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.tnsb-ranking-meta {
    text-align: right;
    font-size: 0.85em;
    color: #888;
    margin-bottom: 10px;
}

/* テーブルデザイン */
.tnsb-ranking-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 16px;
    border: 1px solid #eee;
}

.tnsb-ranking-table th {
    background-color: #f7f7f7;
    color: #333;
    font-weight: bold;
    padding: 12px 10px;
    text-align: left;
    border-bottom: 2px solid #ddd;
    white-space: nowrap; /* 見出しを折り返さない */
}

.tnsb-ranking-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

/* 奇数行の背景色（ゼブラストライプ） */
.tnsb-ranking-table tbody tr:nth-child(odd) {
    background-color: #fafafa;
}

/* カラム幅の調整 */
.tnsb-ranking-table .rank-col {
    width: 60px;
    text-align: center;
}

.tnsb-ranking-table .name-col {
    font-weight: bold;
    color: #333;
}

.tnsb-ranking-table .count-col {
    width: 80px;
    text-align: right;
    font-size: 0.9em;
    color: #666;
}

.tnsb-ranking-table .score-col {
    width: 100px;
    text-align: right;
    font-size: 1.1em;
    color: #0073aa;
}

/* 順位バッジのデザイン */
.rank-badge {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background-color: #eee; /* 4位以下のデフォルト色 */
    color: #555;
    font-weight: bold;
    font-size: 14px;
}

/* 1位〜3位の特別色 */
.rank-badge.rank-1 {
    background-color: #FFD700; /* 金 */
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.rank-badge.rank-2 {
    background-color: #C0C0C0; /* 銀 */
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.rank-badge.rank-3 {
    background-color: #CD7F32; /* 銅 */
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

/* スマホ対応（画面が狭い時） */
@media screen and (max-width: 600px) {
    .tnsb-ranking-table {
        font-size: 14px;
    }
    
    .tnsb-ranking-table th, 
    .tnsb-ranking-table td {
        padding: 10px 6px;
    }

    /* スマホでは「回数」を非表示にしてスッキリさせる場合（任意） 
       必要なら以下のコメントアウトを外してください */
    /* .tnsb-ranking-table .count-col,
    .tnsb-ranking-table th.count-col {
        display: none;
    }
    */
}