:root{
    /* les couleurs du site */
    --ecru: #fff8dc;
    --jaune: #e4a600;
    --bleu: #1550c6;
    --bRoi: #4169E1;

    font-size: 12px;
    /* font-family: 'Philosopher', 'Lora', Tahoma, sans-serif; */
    /* font-family: 'Roboto','Philosopher'; */
}

@font-face {
    font-family: 'coolveticaRegular';
    src: url('/fonts/coolvetica rg.otf');
    font-weight: normal; /* Définit le poids (normal, bold, etc.) */
    font-style: normal;  /* Définit le style (normal, italic, etc.) */

}

@font-face {
    font-family: 'sansationRegular';
    src: url('/fonts/Sansation_Regular.ttf');
    font-weight: normal; /* Définit le poids (normal, bold, etc.) */
    font-style: normal;  /* Définit le style (normal, italic, etc.) */
    
}

body{
    font-family: 'sansationRegular', sans-serif;
}

main{
    padding: 0 10px;
    background-color: var(--bleu);
}

h1{
    text-align: center;
    font-size: 3rem;
    margin: 10px;
}

.scrollable-checkboxes {
    max-height: 150px;  /* Hauteur maximale de la zone */
    overflow-y: scroll;  /* Active le défilement vertical */
    border: 1px solid #ccc;  /* Optionnel : bordure pour démarquer la zone */
    padding: 5px;  /* Optionnel : espacement à l'intérieur */
    background-color: white;
}

/* page index gestion admin */
.photoEntraineur{
    width: 100px;
    height: 100px;
}

.btn-info{
    margin-bottom: 10px;
}

/* page show */
h2{
    text-decoration: underline;
    margin-top: 40px;
}

.entraineurs-container {
    display: flex;
    flex-wrap: wrap; /* Permet de passer à la ligne suivante si nécessaire */
    gap: 20px; /* Espace entre les entraîneurs */
    justify-content: space-between; /* Répartit les entraîneurs sur toute la largeur */
}

.entraineur {
    width: 300px; /* Largeur fixe pour chaque carte d'entraîneur */
    text-align: center; /* Centrer le texte */
    margin-bottom: 20px; /* Espace en bas pour l'ordre */
}

.entraineur img {
    width: 100%;
    height: auto;
    /* max-width: 400px; Taille maximum des images */
    margin-bottom: 10px; /* Espace entre l'image et le texte */
}

.boutons  {
    margin-top: 20px;
}
/* Fin de la vue portable */
/* Ecran d'au moins 1024px de largeur */
@media screen and (min-width:1024px) {
    :root {
        font-size: 16px;
    }

    h1{
        margin: 20px;
    }
}
/* fin de la vue ordinateur */