/* --- NEW MODERN LOADING PATTERN --- */
.modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 40, 50, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loading-card {
    background: #fff;
    padding: 25px 35px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease-out;
    border-left: 6px solid var(--accent-orange);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-box {
    font-size: 35px;
    color: var(--accent-orange);
}

.text-box {
    display: flex;
    flex-direction: column;
}

.loading-texted {
    font-weight: 800;
    color: var(--brand-teal);
    font-size: 18px;
}

.sub-text {
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}
