/* Overlay boven je bestaande content */
.ai-loader-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001c13ee; /* semi-transparant zodat logo zichtbaar blijft */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Zorg dat het boven andere content ligt */
    backdrop-filter: blur(2px); /* optioneel: fancy AI-look */
}

/* Pulsende AI-bol */
.ai-loader-pulse {
    width: 60px;
    height: 60px;
    background-color: #00ff88;
    border-radius: 50%;
    animation: ai-loader-pulsing 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #00ff88, 0 0 20px #00ff88;
}

/* Loader tekst */
.ai-loader-text {
    margin-top: 20px;
    color: #97d8bd;
    font-size: 1.2rem;
    font-family: sans-serif;
    text-align: center;
    font-weight: bold;
}

/* Puls animatie */
@keyframes ai-loader-pulsing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobielvriendelijk maken */
@media (max-width: 480px) {
    .ai-loader-pulse {
        width: 40px;
        height: 40px;
    }

    .ai-loader-text {
        font-size: 1rem;
    }
}
