.notification-container {
    /* position: fixed;
    top: 20px;
    right: 20px;
        */
    z-index: 1030;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#custom-notification {
    width: auto;
    max-width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}
.is-link {
    background-color: #003478 !important;
    color: #ffffff !important;
}

.is-link th {
    color: #ffffff !important;
    text-align: center !important;
}

/* Colore di sfondo della navbar */
.navbar {
    background-color: #003478 !important;
}

/* Colore di sfondo del menu burger attivo */
.navbar-menu.is-active {
    background-color: #003478 !important;
}

/* Colore di sfondo degli elementi del menu burger */
.navbar-menu.is-active .navbar-item {
    background-color: #003478 !important;
    color: #ffffff !important;
}

/* Colore di sfondo degli elementi del menu burger al passaggio del mouse */
.navbar-menu.is-active .navbar-item:hover .navbar-item:focus {
    background-color: #156ab3 !important;
    color: #ffffff !important;
}

/* Stato focus e active per i navbar-item */
.navbar-item:focus,
.navbar-item:hover,
.navbar-item:active {
    background-color: #156ab3 !important;
    color: #ffffff !important;
}

/* Stato attivo (is-active) per i navbar-item */
.navbar-item.is-active {
    background-color: #156ab3 !important;
    color: #ffffff !important;
}

/* Gestione per i dropdown */
.navbar-link:focus,
.navbar-link:hover,
.navbar-link:active,
.navbar-link.is-active {
    background-color: #156ab3 !important;
    color: #ffffff !important;
}

.navbar-dropdown .navbar-item:focus,
.navbar-dropdown .navbar-item:hover,
.navbar-dropdown .navbar-item:active,
.navbar-dropdown .navbar-item.is-active {
    background-color: #156ab3 !important;
    color: #ffffff !important;
}

.has-background-link-soft {
    background-color: #d3e5fc !important;
    color: #003478 !important;
}

/* Animazione heartbeat */
.heartbeat:hover {
    cursor: pointer;
    -webkit-animation: heartbeat 2.8s ease-in-out infinite both;
    animation: heartbeat 2.8s ease-in-out infinite both;
}

/* Keyframe dell'animazione heartbeat */
@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    10% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    17% {
        -webkit-transform: scale(1.25);
        transform: scale(1.25);
    }

    33% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes heartbeat {
    from {
        transform: scale(1);
    }

    10% {
        transform: scale(1.1);
    }

    17% {
        transform: scale(1.25);
    }

    33% {
        transform: scale(1.1);
    }

    45% {
        transform: scale(1);
    }

    html {
        background-color: rgb(213, 227, 232);
    }
}

[v-cloak] {
    display: none !important;
}

#loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
}

/* Lo spinner animato */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #0055c5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
