/* Estilo para el contenedor principal del modal */
.modal-content {
    background-color: #f9f9f9;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Estilo del encabezado del modal */
.modal-header {
    background-color: #00796b;
    color: #ffffff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 15px;
    text-align: center;
}

.modal-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

/* Estilo para el botón de cerrar */
.modal-header .close {
    color: #ffffff;
    opacity: 0.8;
}

.modal-header .close:hover {
    opacity: 1;
}

/* Estilos de la sección de cuerpo del modal */
.modal-body {
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    line-height: 1.6;
}

.modal-body label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
    color: #000000;
}

.modal-body input[type="text"],
.modal-body input[type="email"],
.modal-body input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

/* Estilo de la sección de pie del modal */
.modal-footer {
    padding: 15px;
    text-align: right;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #f1f1f1;
}

/* Botones del modal */
.modal-footer .btn {
    padding: 8px 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border-radius: 5px;
}

.modal-footer .btn-success {
    background-color: #00796b;
    color: #ffffff;
    border: none;
}

.modal-footer .btn-success:hover {
    background-color: #005f5a;
}

.modal-footer .btn-secondary {
    background-color: #cccccc;
    color: #333333;
    border: none;
}

.modal-footer .btn-secondary:hover {
    background-color: #b3b3b3;
}
