body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 10px;
    background-color: #678293; /* Couleur de fond */
    font-size: 20px;
    position: relative;
    overflow: auto; /* Empêche le défilement si l'image est plus grande que l'écran */
}

body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 72%;
    transform: translate(-50%, -50%); /* Centre l'image horizontalement et verticalement */
    background-image: url('images/alpaka_logo9a.png');
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 100vw; /* Largeur maximale de l'écran */
    max-height: 100vh; /* Hauteur maximale de l'écran */
    width: 100%; /* Laisse la taille s'ajuster naturellement */
    height: 100%;
    opacity: 0.2; /* Opacité légère pour l'image */
    z-index: -1; /* Derrière le contenu */
    pointer-events: none;
}




a:link, a:visited {
    color: #34424a; /* Définit la couleur pour les liens, qu’ils soient visités ou non */
    text-decoration: none; /* Retire le soulignement */
}

a:hover {
    color: #ffffff; /* Optionnel : couleur au survol */
}

.container_large {
    min-width: 90%;
    width: 90%;
    height: 80vh; /* Hauteur de la fenêtre */
    margin: 0 auto;
    padding-top: 40px; /* Hauteur du menu */
}

.container_small {
    max-width: 60%;
    height: 80vh; /* Hauteur de la fenêtre */
    margin: 0 auto;
    padding-top: 40px; /* Hauteur du menu */
}

header {
    position: relative;
    background-color: transparent;
    padding: 10px;
    height: 30px;
    top: 10px;
    left: 0px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    max-width: 100px;
}

.intro-text {
    text-align: center;
    margin-bottom: 20px;
}

.content-text {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    padding: 30px;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #f5f5f5;
}

/* Bouton menu hamburger */
.menu-toggle {
    position: fixed; /* Place le bouton de manière fixe */
    top: 10px;       /* Ajuste la distance du haut */
    left: 10px;      /* Ajuste la distance de la gauche */
    font-size: 50px; /* Taille du bouton pour qu'il soit visible et accessible */
    color: rgb(0, 0, 0);
    background-color: transparent; /* Fond transparent pour un look épuré */
    border: none;
    padding: 10px;
    border-radius: 5px; /* Adoucir les bords */
    cursor: pointer;
    z-index: 11; /* Garde le bouton au-dessus des autres éléments */
}

/* Menu en plein écran */
.main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 20vw;
    min-width: 250px;
    height: 100vh;
    background: #000000d1 url('images/electypnose_mobile_logo.png') no-repeat top right;
    background-size: auto 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
    visibility: hidden;
    z-index: 50; /* Assure que le menu est en dessous du bouton hamburger */
}

.main-menu.show-menu {
    opacity: 1;
    visibility: visible;
}

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

/* Style des éléments de menu */
.main-menu li {
    margin: 15px 0;
}

.main-menu a {
    display: block;
    font-size: 24px; /* Taille de texte plus grande pour les écrans mobiles */
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    background-color: #555; /* Couleur de fond des boutons */
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.main-menu a:hover {
    background-color: #777; /* Couleur au survol */
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* Couleur sombre semi-transparente */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 20; /* Juste en dessous du menu */
}

.menu-overlay.show-overlay {
    visibility: visible;
    opacity: 1;
}


.title-level1 {
    position: absolute;
    font-size: 25px;
    padding: 10px;
    top: 28px;
    left: 80px;
    color: rgb(0, 0, 0); /* Texte en blanc */
    font-weight: bold; /* Texte en gras */
}

.footer-banner {
    position: fixed; /* Fixe la bannière en bas de la page */
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10; /* Place la bannière au-dessus d'autres éléments si nécessaire */
    background-color: transparent;
}

.footer-banner img {
    width: 100%; /* Fait en sorte que l'image occupe toute la largeur */
    height: auto; /* Maintient le ratio de l'image */
    display: block;
}



    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    .intro-text {
        font-size: 18px;
    }

    table {
        font-size: 18px;
    }


.event-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.event-item {
    flex-basis: calc(100% - 20px);
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.event-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.event-item p {
    margin: 5px 0;
}

.audio-player {
    max-width: 100%;
    margin: 0 auto;
}

audio {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: #f4f4f4;
}

.player-controls {
    display: flex;
    justify-content: space-between;
    
}

/* Modifier le style du lecteur audio */
audio::-webkit-media-controls {
    justify-content: space-between;
    background-color: #f4f4f4;
    border-radius: 5px;
}

/* Ajuster l'affichage du temps en cours */
audio::-webkit-media-controls-current-time-display {
    flex: 1;
    text-align: center;
}

/* Masquer le temps total du morceau */
audio::-webkit-media-controls-time-remaining-display {
    display: none;
}

audio::-webkit-media-controls-volume-slider-container {
    display: none !important;
}

/* Ajuster la barre de lecture */
audio::-webkit-media-controls-timeline {
    flex-basis: 60%;
    width: 100%;
    order: 5;
}

/* Responsive styles */
@media (min-width: 768px) {
    .container {
        max-width: 768px;
        margin: 0 auto;
    }
}

.playlist {
    list-style: none;
    padding: 0;
}

.playlist li {
    margin-bottom: 10px;
}

.playlist li a {
    display: block;
    padding: 5px;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    background-color: #e6e6e6;
    transition: background-color 0.3s ease;
}

.playlist li a:hover {
    background-color: #d4d4d4;
}

.playlist li a.current-track {
    color: #c6c6c6; /* Change the color to your desired color */
    background-color: #133143;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-group {
    margin-bottom: 15px;
    width: 100%;
}

.input-field {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

select {
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#openSelect {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    border-radius: 5px;
    background-color: #919191;
    color: white;
    border: none;
    cursor: pointer;
}

.form-container {
    display: flex;
    align-items: center;
}

.form-group {
    flex: 1;
    margin-right: 10px;
}

.select-styles {
    width: 100%;
}

.btn {
    flex-shrink: 0;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #b0a7a7;
    transition: background-color 0.3s ease, color 0.3s ease; /* Transition pour effet fluide */
}

.btn:hover {
    background-color: #8f7f7f; /* Changement de couleur de fond au survol */
    color: #ffffff; /* Changement de couleur de texte au survol */
    border-color: #999; /* Optionnel : changer la couleur de la bordure au survol */
        cursor: pointer; /* Changement du curseur en pointeur */
}


.btn-large {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.btn-large:hover {
    background-color: #8f7f7f; /* Changement de couleur de fond au survol */
    color: #ffffff; /* Changement de couleur de texte au survol */
    border-color: #999; /* Optionnel : changer la couleur de la bordure au survol */
        cursor: pointer; /* Changement du curseur en pointeur */
}


/* Ajouté pour afficher la liste à cocher */
.checkbox-styles {
    display: none;
    background-color: #bab4b4;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    text-align: left;
    z-index: 1;
}

.checkbox-styles.show-styles {
    display: block;
}

.checkbox-styles label {
    display: block;
    margin: 5px 0;
}

.checkbox-styles label input {
    margin-right: 5px;
}

.footer {
    position: fixed;
    font-size: 11px;
    color: rgb(196, 196, 196);
    right: 10px;
    bottom: 10px;
}