/* -------------------------- */
    /* ESTILOS DEL CONTENIDO BASE */
    /* -------------------------- */
    .page-content {
        padding: 20px;
        text-align: center;
    }
    .page-content h1 {
        color: #007bff;
    }
    /* -------------------------- */
    /* ESTILOS DEL MODAL (Overlay y Contenedor) */
    /* -------------------------- */
    /* El overlay cubre toda la pantalla y aplica el efecto blur */
    .modal-overlay {
        position: fixed; /* Fija el modal sobre el contenido */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex; /* Centra el contenido */
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente oscuro */
        z-index: 1000; /* Asegura que esté por encima de todo */
        /* ¡El truco del desenfoque! */
        backdrop-filter: blur(5px); 
        -webkit-backdrop-filter: blur(5px); /* Compatibilidad con navegadores basados en WebKit (Chrome, Safari) */
    }
    /* El contenedor blanco del modal */
    .modal-content {
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        text-align: center;
        max-width: 400px;
        font-family: "Roboto", sans-serif;
        font-weight: 400;
        font-style: normal;
    }
    .modal-content h2 {
        margin-top: 0;
        margin-bottom: 20px;
        color: #333;
    }
    /* -------------------------- */
    /* ESTILOS DE LOS BOTONES */
    /* -------------------------- */
    .modal-buttons {
        display: flex;
        justify-content: space-around;
    }
    .modal-buttons button {
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        
        transition: background-color 0.3s ease;
        width: 45%; /* Para que ocupen casi la mitad cada uno */
    }
    /* Botón "Sí" (Verde) */
    #btnSi {
        background-color: #28a745; 
        color: white;
    }
    #btnSi:hover {
        background-color: #218838;
    }
    /* Botón "No" (Rojo) */
    #btnNo {
        background-color: #dc3545; 
        color: white;
    }
    #btnNo:hover {
        background-color: #c82333;
    }