.preloader-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, #fdfdfd, #f3f7ff);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ccc;
    border-top: 6px solid #3880ff;
    border-radius: 50%;
    animation: spin 0.8s ease-in-out infinite;
}

.preloader-text {
    font-size: 16px;
    color: #444;
    font-weight: 500;
    font-family: system-ui, sans-serif;
    animation: fadeIn 1s ease-in-out;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}