/* TOP 5 MMR Styles */

/* Loading Spinner */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    color: #cccccc;
    font-size: 0.9rem;
}

.loading-spinner i {
    color: #ff6b6b;
    font-size: 1rem;
}

/* Error Message */
.error-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    color: #ff4444;
    font-size: 0.85rem;
    text-align: center;
}

.error-message i {
    font-size: 1rem;
}

/* No Data Message */
.no-data {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

/* Rank Item Enhancements */
.rank-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s ease;
}

.rank-item:last-child {
    border-bottom: none;
}

.rank-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.rank-number {
    color: #ff6b6b;
    font-weight: bold;
    font-size: 0.9rem;
    min-width: 25px;
}

.player-name {
    color: #ffffff;
    font-weight: 500;
    flex: 1;
    margin: 0 8px;
    font-size: 0.9rem;
}

.player-score {
    color: #cccccc;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .loading-spinner,
    .error-message,
    .no-data {
        padding: 15px;
        font-size: 0.8rem;
    }
    
    .rank-item {
        padding: 6px 10px;
    }
    
    .player-name {
        font-size: 0.85rem;
    }
    
    .player-score {
        font-size: 0.8rem;
    }
} 