/* Sala de Espera AWS - Pantalla de bloqueo */
.se-overlay {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
}

.se-modal {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    max-width: 450px;
    width: 90%;
}

.se-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: se-spin 1s linear infinite;
    margin: 0 auto 24px auto;
}

@keyframes se-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.se-title {
    color: #2c3e50;
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: 600;
}

.se-message {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.se-status-box {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    text-align: left;
    margin-bottom: 20px;
}

.se-status-label {
    font-size: 13px;
    color: #7f8c8d;
    display: block;
    margin-bottom: 4px;
    font-weight: bold;
    text-transform: uppercase;
}

.se-status-detail {
    font-size: 15px;
    color: #2c3e50;
    font-weight: 500;
}

.se-footer-note {
    color: #bdc3c7;
    font-size: 12px;
    margin: 0;
}
