﻿#fullscreen-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* sfondo semitrasparente */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner-box {
    text-align: center;
    animation: fadeIn 0.4s ease-out;
}

.spinner-gif {
    max-width: 120px;
    margin-bottom: 15px;
}

.spinner-message {
    font-size: 1.2rem;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    animation: pulseText 2s infinite;
}

/* Animazioni */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulseText {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}
