/* Global loader overlay */
#whiizz-loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(17, 24, 39, 0.35);
    backdrop-filter: blur(4px) saturate(120%);
}

/* Card */
#whiizz-loader-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    color: #111827;
    min-width: 240px;
    max-width: 90%;
}

/* Spinner */
#whiizz-loader-spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 5px solid #e5e7eb;
    border-top-color: #1e90ff;
    animation: whiizzSpin .8s linear infinite;
}

@keyframes whiizzSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#whiizz-loader-text {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .3px;
    color: #374151;
}