.elementor-1355 .elementor-element.elementor-element-7e6b3db{--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;--gap:0% 0%;--row-gap:0%;--column-gap:0%;}.elementor-1355 .elementor-element.elementor-element-657c1a2 > .elementor-widget-container{margin:-10px -10px -10px -10px;}@media(min-width:768px){.elementor-1355 .elementor-element.elementor-element-7e6b3db{--width:100vw;}}/* Start custom CSS for html, class: .elementor-element-657c1a2 *//* Assure-toi que le body et html prennent toute la hauteur de l'écran */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Assure que le conteneur du lecteur occupe toute la hauteur disponible */
#radio-player {
    height: 100vh;  /* Utilise 100% de la hauteur de l'écran */
    background-color: #261139;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Style du logo */
#radio-logo {
    width: 150px;  /* Ajuste la taille du logo */
    height: auto;
    margin-bottom: 20px;
}

#click-text {
    color: white;
    font-size: 18px;
    margin-top: 20px;
    font-weight: bold;
}

/* Animation pour zoom */
@keyframes zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

#radio-logo {
    animation: zoom 3s infinite ease-in-out;
}/* End custom CSS */