

.ck8j0__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(32, 32, 32, 0.8);
        backdrop-filter: blur(6px);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .ck8j0__loader-wrapper {
        background: var(--ck8j0__main_white);
        padding: 30px 40px;
        border-radius: 14px;
        border: 1px solid var(--ck8j0__main_border_color);
        box-shadow: 0 8px 30px rgba(146, 138, 146, 0.4);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        max-width: 340px;
        width: 100%;
        font-family: var(--ck8j0__font_family), sans-serif;
        color: var(--ck8j0__pastel_dark);
        animation: modalFadeIn 0.3s ease-out;
        text-align: center;
    }

    @keyframes modalFadeIn {
        from {
            transform: scale(0.95);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    .ck8j0__spinner {
        width: 36px;
        height: 36px;
        border: 4px solid var(--ck8j0__pastel_white);
        border-top: 4px solid var(--ck8j0__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    .ck8j0__message_loading {
        font-size: 16px;
        font-weight: 500;
        color: var(--ck8j0__dark_accent);
        margin: 0;
    }

    .ck8j0__message_success {
        font-size: 18px;
        font-weight: bold;
        color: var(--ck8j0__main_dark);
        margin: 0;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }















