﻿/* ===============================
   HABECU SWEETALERT2 GLOBAL STYLE
   =============================== */

.swal2-popup {
    border-radius: 10px !important;
    padding: 25px 30px !important;
    font-family: 'Segoe UI', sans-serif !important;
}

/* Título */
.swal2-title {
    font-weight: 700 !important;
    font-size: 1.3rem !important;
    color: #0b3d1b !important; /* Verde oscuro HABECU */
}

/* Texto */
.swal2-html-container {
    font-size: 0.95rem !important;
    color: #333 !important;
}

/* ==== BOTONES UNIFICADOS ==== */
.HABECU-btn,
.HABECU-btn-cancel {
    min-width: 120px !important;
    height: 40px !important;
    margin: 0 6px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border: none !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.25s ease-in-out !important;
}

/* Botón confirmar */
.HABECU-btn {
    background-color: #0b6726 !important; /* Verde HABECU */
    color: white !important;
}

/* Botón cancelar */
.HABECU-btn-cancel {
    background-color: #9b1c1c !important;
    color: white !important;
}

    /* Hover */
    .HABECU-btn:hover,
    .HABECU-btn-cancel:hover {
        filter: brightness(1.15) !important;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.25) !important;
        transform: translateY(-1px) !important;
    }

    /* Click */
    .HABECU-btn:active,
    .HABECU-btn-cancel:active {
        transform: translateY(0) !important;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.3) !important;
    }

/* ==== ICONOS ==== */
.swal2-icon.swal2-success {
    color: #0b6726 !important;
    border-color: #0b6726 !important;
}

.swal2-icon.swal2-error {
    color: #c0392b !important;
    border-color: #c0392b !important;
}

.swal2-icon.swal2-warning {
    color: #f39c12 !important;
    border-color: #f39c12 !important;
}

.swal2-icon.swal2-info {
    color: #3085d6 !important;
    border-color: #3085d6 !important;
}

