/* Estilo del encabezado del modal */
.modal-header {
    background-color: #000a66;
    color: #fff;
    font-family: 'Bahnschrift', sans-serif;
    font-weight: bold;
}

/* Estilo del contenido del modal */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
}

/* Estilo para los campos en el modal */
.modal-body .form-group {
    margin-bottom: 15px;
}

.modal-body label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.modal-body input, .modal-body select, .modal-body textarea {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ced4da;
    box-sizing: border-box;
}

/* Estilo del pie del modal */
.modal-footer {
    background-color: #f1f1f1;
}

/* Estilos de los botones en el modal */
.btn-primary, .btn-success, .btn-danger {
    background-color: #000a66;
    border: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px; /* Ajusta el relleno para que ambos botones tengan el mismo tamaño */
    border-radius: 5px;
}

.btn-primary:hover, .btn-success:hover {
    background-color: #cea34e;
}

.btn-danger {
    background-color: #ce2029;
}

.btn-danger:hover {
    background-color: #a1171f;
}

