/* 玩家排行榜卡片样式 */

/* 排行榜 */
.ranking-container {
    max-height: 250px;
    overflow-y: auto;
}

.ranking-item {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.ranking-item:last-child {
    border-bottom: none;
}

.rank-number {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.8rem;
    margin-right: 8px;
    flex-shrink: 0;
}

.rank-1 { background: #ffd700; color: #333; }
.rank-2 { background: #c0c0c0; color: #333; }
.rank-3 { background: #cd7f32; color: #fff; }
.rank-other { background: #f8f9fa; color: #666; }

.rank-player-info {
    flex: 1;
}

.rank-player-name {
    font-weight: 500;
    font-size: 0.85rem;
    color: #2c3e50;
}

.rank-player-score {
    font-size: 0.8rem;
    color: #6c757d;
}

.rank-score {
    font-weight: 600;
    color: #5b9bd5;
    font-size: 0.9rem;
    flex-shrink: 0;
}
