a {
    text-decoration: none; /* Retirer la ligne soulignée */
}
.player-name {
    text-decoration: none; /* Retirer la ligne soulignée */
}

.player-name:hover {
    text-decoration: none; /* Empêcher l'underline au survol */
}
.badge {
    font-size: 0.75rem;
    padding: 0.4em 0.6em;
}
/* Rollover effect for the match cards */
.card:hover {
	/* transform: scale(1.3); Slight zoom effect */
	transition: transform 0.3s ease-in-out;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Add a soft shadow on hover */
}
.winner {
    background-color: #ff98007a; /* Light green background for winner */
    color: #155724; /* Dark green text for contrast */
    font-weight: bold;
    border-radius: var(--bs-border-radius) !important;

} 
.navbar.fixed-bottom .nav-link {
    padding: 0.25rem !important;
    color: #003372;
}

/* Table styling */
.player-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Table hover effect for interactivity */
.player-table:hover {
    /* transform: scale(1.02); Slight zoom effect */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.player-table th, .player-table td {
    padding: 15px;
    text-align: center;
    vertical-align: middle;
    transition: background-color 0.3s ease; /* Smooth background color transition */
}

/* Header row styling */
.player-table th {
    background-color: lightgrey; /* Primary color background */
    color: white; /* White text for contrast */
    font-weight: bold;
    font-size: 1.3rem;
}

/* Data row styling */
.player-table td {
    background-color: #f8f9fa; /* Light gray background for cells */
}

/* VS cell styling */
.player-table .vs-cell {
    font-size: 1.6rem;
    color: ##acbbc9; 
    font-weight: bold;
}

/* Button hover effect */
button.btn-outline-secondary:hover {
    background-color: #013370;
    color: white;
    border-color: #013370;
}

/* Icon styling */
i.fas {
    margin-right: 8px;
}

.terrain {
    background-color: #D27D49;
    background-color: #CC4E0E;
    color: white;
}
.score {
    background-color: #93d396;
    color: #ffffff;
    font-size: x-large;
}

.card {
	padding-top: 40px; /* Ajoutez du padding en haut pour éviter que le demi-cercle ne dépasse */
}

.collapse.show + .more-info-btn i {
	transform: rotate(0); /* Réinitialisez la rotation lors de l'expansion */
}

.icon-title i {
	margin-right: 8px;
	color: #5a5a5a;
}

/* Hover effect */
.player-table tbody tr:hover {
	background-color: #f1f1f1;
}


/* Style des boîtes des poules */
.poule-box {
    background-color: #fff3e0; /* Orange très clair pour le fond */
    border-radius: 8px; /* Bordures arrondies */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre douce */
    padding: 15px; /* Espace intérieur */
    transition: transform 0.3s ease; /* Effet au survol */
}

.poule-box:hover {
    /* transform: scale(1.02); Légère augmentation au survol */
}

/* Titre des poules */
.poule-title {
    text-align: center;
    background-color: #ff9800; /* Orange vif pour le titre */
    color: white;
    padding: 10px;
    border-radius: 6px 6px 0 0; /* Bordures arrondies en haut */
    margin-bottom: 10px; /* Espacement avec le reste du contenu */
    font-size: 18px;
}

/* Liste des joueurs sur une ligne */
.list-group-horizontal {
    display: flex; /* Utilise flexbox pour aligner les joueurs */
    flex-wrap: wrap; /* Permettre le retour à la ligne si nécessaire */
    gap: 10px; /* Espacement entre les joueurs */
    justify-content: center; /* Centrer les joueurs */
}

/* Style des éléments joueurs */
.list-group-horizontal .list-group-item {
    background-color: #ffe0b2; /* Orange clair pour les joueurs */
    border-radius: 8px; /* Bordures arrondies */
    text-align: center; /* Centrer le texte */
    flex: 1 1 auto; /* Taille flexible pour s'adapter à l'espace */
    min-width: 100px; /* Largeur minimale pour les petits écrans */
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Légère ombre */
    color: #ff5722; /* Couleur de texte orange foncé */
}

/* Espace entre les poules */
.mb-3 {
    margin-bottom: 20px !important;
}

/* Style pour les matchs */
.match-details {
    background-color: #fff3e0; /* Même fond que les poules */
    border-left: 4px solid #ff9800; /* Bande orange sur le côté */
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
}

.match-details h5 {
    color: #ff5722; /* Couleur orange foncé pour les titres de match */
}


/* Effet de transition sur les résultats */
.fade-in {
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.fade-in.show {
	opacity: 1;
}

/* Styles pour l'image en pleine largeur */
.full-width-image-container {
    width: 100vw; /* Prend la largeur de la fenêtre */
    margin-left: calc(-50vw + 50%); /* Centre l'image */
    overflow: hidden; /* Cache tout dépassement non voulu */
}

.full-width-image {
    width: 100%;
    height: auto; /* Conserve la proportion de l'image */
}
