﻿/* CSS PARA EL OVERLAY DE PROCESANDO */
#modalProcesando {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(0.20);
    transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    display: flex;
    pointer-events: none;
    z-index: 10000;
}

    #modalProcesando.active {
        opacity: 1;
        transform: scale(1);
        visibility: visible;
        pointer-events: auto;
    }

.close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    /* No standard cursor, use custom one */
    cursor: none;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

    .close-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        transform: rotate(90deg);
    }
