.loading-block-container {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 2px dashed #bfdbfe;
    border-radius: 0.75rem;
    background-color: rgba(239, 246, 255, 0.2);
}

.loading-spinner-circle {
    width: 2rem;
    height: 2rem;
    border: 3px solid rgba(35, 131, 226, 0.1);
    border-top: 3px solid #2383e2;
    border-right: 3px solid #2383e2;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.loading-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.loading-title {
    font-size: 0.75rem;
    color: #2563eb;
    font-weight: 600;
}

.loading-subtitle {
    font-size: 0.625rem;
    color: #60a5fa;
    opacity: 0.7;
}

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

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.98);
    }
}