.elementor-1376 .elementor-element.elementor-element-9b7eb23{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1376 .elementor-element.elementor-element-2a27bfb > .elementor-widget-container{margin:-10px -10px -10px -10px;}@media(min-width:768px){.elementor-1376 .elementor-element.elementor-element-9b7eb23{--width:100vw;}}/* Start custom CSS for html, class: .elementor-element-2a27bfb *//* Style global */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;  /* Fond noir */
    color: white;
}

#radio-player-container {
    position: relative;
    height: 100vh;  /* Hauteur totale de l'écran */
    background-color: #000; /* Fond noir */
    display: flex;
    justify-content: center;
    align-items: center;
}

#radio-player {
    max-width: 600px;
    width: 100%;
    background-color: rgba(106, 13, 173, 0.7);  /* Fond violet avec opacité */
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 2;  /* S'assurer que le contenu soit au-dessus du fond */
}

/* Conteneur de l'album */
#album-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px; /* Réduire l'espace entre la pochette et les infos */
}

#album-cover-container {
    position: relative;
    width: 100px;  /* Réduire la taille de la pochette */
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 10px; /* Réduire l'espace entre la pochette et les infos */
}

#album-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

/* Bouton Play/Pause au survol */
#play-pause {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#album-cover-container:hover #play-pause {
    opacity: 1;
}

#play-pause-btn {
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* Infos de la chanson */
#song-info {
    text-align: left;
    margin-left: 10px; /* Réduire l'espace à gauche pour rapprocher l'info */
}

#song-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0; /* Supprimer l'espace supplémentaire */
}

#song-artist {
    font-size: 16px;
    color: #ccc;
    margin-top: 5px; /* Réduire l'espace entre le titre et l'artiste */
}

/* Contrôle du volume et barre de progression */
#audio-controls {
    margin-top: 20px;
}

/* Barre de progression */
#progress-bar-container {
    margin-top: 10px;
}

input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: #fff;
    height: 4px;
    border-radius: 2px;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: #444;
    border-radius: 2px;
}

input[type="range"]::-webkit-slider-thumb {
    background: #1c1c1c;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

input[type="range"]:focus {
    outline: none;
}

/* Changer la couleur des éléments au survol */
input[type="range"]:hover {
    background: #6a0dad; /* Changer la couleur violette au survol */
}

/* Bouton Replay */
#replay-container {
    margin-top: 20px; /* Espacement avec les autres éléments */
}

#replay-button {
    display: inline-block;
    background-color: #6a0dad; /* Couleur violette */
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

#replay-button:hover {
    background-color: #5e0b9f; /* Couleur violette plus foncée au survol */
    transform: scale(1.05); /* Effet d'agrandissement au survol */
}/* End custom CSS */