html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    
}

body {
    background-image: url('img/background/background-wawe.webp');
    background-size: cover; /* Adatta l'immagine alla finestra */
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Mantiene l'immagine fissa allo scrolling */
}

.mud-snackbar {
    z-index: 9500 !important;
}

.mud-dialog {
    z-index: 3500 !important; /* Default � circa 2000 */
}

.mic-pulse {
    animation: mic-blink 1.2s infinite;
    color: #ff5252; /* puoi cambiarlo per adattarlo al tuo tema */
}

@keyframes mic-blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.my-dialog-background {
    background-color: rgba(0,0,0,0.7); /* sfondo scuro semi-trasparente */
}

.my-dialog-content {
    border-radius: 16px;
    padding: 24px;
    background-color: #fff;
    min-height: 90vh; /* come volevi tu */
    display: flex;
    flex-direction: column;
}


.wave-container {
    display: flex;
    justify-content: center; /* centra orizzontalmente */
    align-items: center; /* centra verticalmente */
    height: 86px;
    width: 100%;
    background-color: #263238;
    border-radius: 6px;
    padding: 10px;
    gap: 6px;
    color: #ECEFF1;
    box-sizing: border-box;
}


.wave {
    width: 6px;
    height: 40%;
    background: #ECEFF1;
    animation: wave-animation 1s infinite ease-in-out;
    border-radius: 3px;
}

    .wave:nth-child(1) {
        animation-delay: 0s;
    }

    .wave:nth-child(2) {
        animation-delay: 0.2s;
    }

    .wave:nth-child(3) {
        animation-delay: 0.4s;
    }

    .wave:nth-child(4) {
        animation-delay: 0.6s;
    }

    .wave:nth-child(5) {
        animation-delay: 0.8s;
    }

@keyframes wave-animation {
    0%, 100% {
        height: 20%;
    }

    50% {
        height: 100%;
    }
}
 

.mud-chip > .mud-chip-content {
    align-items: normal !important;
    /*display: inline-flex !important;*/
    /*height: 100% !important;*/
    max-width: 100% !important;
    white-space: normal !important;
    word-break: break-word;
    text-align: left;
}

/* Questo funziona davvero su MudBlazor */
.mud-calendar-hour {
    height: 30px !important;
    min-height: 30px !important;
}


.blinking-icon {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}