/* Styles existants - Ne pas modifier */

/* Styles pour les LoLMatchs tracés */
.tracked-LoLMatch {
    border: 2px solid #28a745;
}

.tracked-LoLMatch .card-header {
    background-color: #28a745;
}

.player-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    background-color: #fff;
}

.player-card:hover {
    transform: translateY(-5px);
}

.player-card .card-header {
    background-color: #1a1a2e;
    color: white;
    font-weight: bold;
}

.player-card.in-game {
    border: 2px solid #dc3545;
}

.player-card.in-game .card-header {
    background-color: #dc3545;
}

.team-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto;
}

.team-blue {
    background-color: #007bff;
    color: white;
}

.team-red {
    background-color: #dc3545;
    color: white;
}

.region-badge {
    background-color: #6c757d;
    color: white;
    border-radius: 4px;
    padding: 2px 5px;
    font-size: 12px;
}
