/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/
/* Incolla questo nel file custom.css */
/* Struttura per spingere il footer in basso */
/* Layout per spingere il footer sempre in fondo alla pagina */
body {
    padding-bottom: 0; 
    flex-direction: column; 
    display: flex; 
    min-height: 100vh;
}

body > article {
    flex: 1; 
}

/* Stile del tuo footer personalizzato con trasparenza e linea */
.my-custom-footer {
    background-color: rgba(255, 255, 255, 0.2); /* Trasparenza */
    backdrop-filter: blur(5px); /* Effetto sfocatura sfondo */
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid rgba(0, 0, 0, 0.1); /* Striscia divisoria */
    padding: 15px 0;
    text-align: center;
    width: 100%;
}

.my-custom-footer p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #333;
}

.my-custom-footer a {
    color: #0056b3;
    text-decoration: none;
}

.my-custom-footer a:hover {
    text-decoration: underline;
}

/* Nasconde il footer predefinito di LimeSurvey */
.footer {
    display: none !important;
}

/* Nasconde specificamente l'immagine survey_list_header ovunque appaia */
img[src*="survey_list_header.png"],
img[src*="poweredby.png"]{
    display: none !important;
}