/* Styles additionnels pour FriendsMatchLoL */

/* Styles pour les cartes de match */
.match-card {
    transition: transform 0.2s;
    border-left: 5px solid transparent;
}

.match-card.win {
    border-left-color: #28a745;
}

.match-card.loss {
    border-left-color: #dc3545;
}

.match-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Styles pour les icônes de champions */
.champion-icon-lg {
    width: 60px;
    height: 60px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Styles pour les icônes d'items */
.item-icon {
    width: 30px;
    height: 30px;
}

.empty-item {
    width: 30px;
    height: 30px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

/* Styles pour les badges de résultat */
.result-badge {
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    padding: 2px 8px;
}

/* KDA styles */
.kda-stats {
    font-weight: bold;
}

.kda-stats h5 {
    margin-bottom: 0;
}

/* Styles pour les statistiques du joueur */
.player-stats {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
}

.stat-value {
    font-weight: bold;
}

/* Styles pour le modal de détails du match */
.team-header {
    padding: 10px 15px;
    color: white;
    border-radius: 4px 4px 0 0;
}

.team-blue {
    background-color: #1a73e8;
}

.team-red {
    background-color: #e53935;
}

.player-row {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #dee2e6;
}

.player-row:last-child {
    border-bottom: none;
}

/* Styles pour le tableau de bord */
.dashboard-stat {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.dashboard-stat h3 {
    font-size: 2.5rem;
    margin: 10px 0;
}

.dashboard-stat p {
    margin: 0;
    color: #6c757d;
}

/* Animation de chargement des données */
@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

.loading-pulse {
    animation: pulse 1.5s infinite;
}
