<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Applique Ã&nbsp; toute la page */
:root {
    --primary-bg-color: #121212;
    --highlight-color: #FF9800;
    --button-bg-color: #333333;
    --button-hover-bg-color: #444444;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--primary-bg-color);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
}

/* Mise en page du header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Alignement vertical */
    padding: 15px;
    background-color: #121212;
    width: 70%;
}

/* GÃ©rer la taille de l'image dans le header */
.logo {
    width: 350px; /* Taille de l'image ajustÃ©e Ã&nbsp; 350px */
    margin-right: 20px;
}

/* Ajustement du texte */
.movie-info {
    text-align: left;
    display: flex;
    flex-direction: column; /* Empile le texte verticalement */
    justify-content: center; /* Centrer verticalement le texte */
    height: 100%; /* S'assure que la section prend toute la hauteur disponible */
}

.movie-info h2 {
    font-size: 1em;
    color: white;
    margin: 0;
}

.movie-info p {
    font-size: 0.8em;
    margin-top: 5px;
    color: #ccc;
}

/* Section des contrÃ´les audio avec les boutons au-dessus du lecteur */
.audio-player-right {
    display: flex;
    flex-direction: column; /* Empile les Ã©lÃ©ments verticalement */
    justify-content: center;
    align-items: center; /* Centrer les Ã©lÃ©ments */
    gap: 10px; /* Espacement entre les boutons et le lecteur audio */
    margin-left: 10px; /* Marge entre le texte et le lecteur audio */
}

/* Ajuste la largeur du lecteur audio */
audio {
    width: 300px;
}

/* Section principale du lecteur audio */
main {
    width: 80%;
    margin-top: 40px;
    text-align: left;
	display: flex;
	flex-direction: colomn;
	align-items: flex-start;
	margin-left: 0;
}

.music-list-container {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    align-items: flex-start;
	width: 100%;
}

.image-container {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-container img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
}

/* ContrÃ´les du lecteur */
.audio-controls {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Taille uniforme et centrage des boutons */
.previous-button,
.next-button,
.download-button,
.start-playlist-button,
.stop-playlist-button {
    background-color: var(--button-bg-color);
    border: none;
    color: white;
    font-size: 16px; /* Taille du texte rÃ©duite pour les boutons */
    padding: 10px 12px; /* Taille uniforme pour tous les boutons, plus petits */
    border-radius: 8px; /* Bords arrondis */
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px; /* Taille rÃ©duite des boutons */
    width: 40px; /* Taille rÃ©duite des boutons */
    font-weight: bold;
    text-decoration: none; /* Supprime le soulignement du lien */
}

#download-button {
    display: inline-block; /* Pour appliquer le comportement inline-block */
    width: 20px; /* Largeur personnalisÃ©e */
    height: 20px; /* Hauteur personnalisÃ©e */
    text-align: center; /* Pour centrer le contenu Ã&nbsp; l'intÃ©rieur */
    font-size: 20px; /* Taille du texte si nÃ©cessaire */
}

/* Hover et active pour les autres boutons */
.download-button:hover,
.start-playlist-button:hover,
.previous-button:hover,
.next-button:hover,
.stop-playlist-button:hover {
    background-color: var(--button-hover-bg-color); /* Couleur lÃ©gÃ¨rement plus clair au survol */
    transform: scale(1.05); /* LÃ©gÃ¨re augmentation de la taille au survol */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Ombre plus marquÃ©e */
}

.download-button:active,
.start-playlist-button:active,
.previous-button:active,
.next-button:active,
.stop-playlist-button:active {
    transform: scale(0.95); /* RÃ©duction de la taille au clic */
}

/* Pour s'assurer que le lecteur audio est bien dimensionnÃ© */
audio {
    width: 300px; /* Taille uniforme du lecteur audio */
}

/* Footer */
footer {
    background-color: var(--primary-bg-color);
    color: #ccc;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    text-align: left;
    font-size: 10px;
	width: 100%;
	margin-top: 20px;
}

.movie-copyright p {
    margin: 5px 0;
    line-height: 1.5;
}

/* Style spÃ©cifique pour le texte "en cours de lecture" */
.now-playing {
    color: var(--highlight-color) !important;
    background-color: transparent !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    footer {
        padding: 15px;
    }
    .movie-copyright p {
        font-size: 12px;
    }
}</pre></body></html>