/* Estilos para el modal */
#emailAlertModal.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 99999;  /* Asegura que el modal esté por encima de otros elementos de la página */
    width: 500px;
    height: 330px;
}
.no-input-alert {
    height: 280px !important;
}

#emailAlertModal .modal-content {
    padding: 20px;
    overflow: auto;  /* Si el contenido supera el alto, mostrará un scrollbar */
    border: none;
    width: 500px;
    height: 330px;
}

/* Estilo para el botón */
#emailAlertModal .btn-primary {
    min-width: 150px;
}

#emailAlertModal .btn-primary:hover {

}

/* Estilos adicionales para el layout y el espaciado */
#emailAlertModal .form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
        border: 1px solid #ccc;
}

#emailAlertModal .js-mailalert-alerts {
    margin-top: 10px;
}

#emailAlertModal .mt-1 {
    margin-top: 10px;
}

#emailAlertModal .alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
    padding: 10px;
}
#emailAlertModal .text-center{
    text-align: center;
}

@media (max-width: 400px){
    #emailAlertModal.modal {
        width: calc(100vw - 30px);
        height: 400px;
    }
    .no-input-alert {
        height: 295px !important;
    }

    #emailAlertModal .modal-content {
        width: calc(100vw - 30px);
        height: 400px;
    }
}