/* Basic styling for layout */
html,
body {
    height: 100%;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
}

/* Spinner di caricamento */
.spinner-border {
    display: none;
}

.loading-active .spinner-border {
    display: inline-block;
}

.loading-active button {
    pointer-events: none;
    opacity: 0.6;
}

#container-eff {
    width: 100%;
    height: 100vh; /* Imposta l'altezza per occupare l'intero viewport */
    display: flex;
    justify-content: center;
    align-items: center;
}

iframe {
    width: 100%;
    height: 100%;
    border: none; /* Rimuovi il bordo dell'iframe */
}