.guidance-player-container {
    max-width: 600px;
    margin: auto;
    background-color: #007982;
    padding: 20px;
    border-radius: 10px;
    color: white;
    text-align: center;
}

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

#playlist .track {
    cursor: pointer;
    padding: 10px;
    background-color: #005f66;
    margin: 5px 0;
    border-radius: 5px;
}

#playlist .track:hover {
    background-color: #009da5;
}

/* Style du lecteur prenant toute la page */
.guidance-player-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* 100% de la hauteur de l'écran */
    background-color: #007982;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}

/* Le lecteur audio */
.guidance-player {
    width: 80%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* L'image du lecteur (en rond au centre) */
.player-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Contrôles audio */
.audio-controls audio {
    width: 80%;
    border-radius: 8px;
    outline: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Conteneur du lecteur audio */
.audio-player-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #007982; /* Couleur du fond */
    color: white;
}

/* Lecteur audio */
.audio-player {
    text-align: center;
    width: 80%;
    max-width: 600px;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
}

/* Image centrée */
.audio-image img {
    max-width: 100%;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Contrôles audio */
.audio-controls audio {
    width: 100%;
    border-radius: 5px;
}
