.form-section {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
}

.section-title {
    color: #0d6efd;
    margin-bottom: 20px;
}

.required-field::after {
    content: " *";
    color: red;
}

.btn-submit {
    background-color: #198754;
    border-color: #198754;
    padding: 10px 25px;
    font-weight: bold;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Estilos adicionales para los modales */
.modal-content {
    border-radius: 10px;
}

.modal-header {
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
}

/* Estilos para la lista de confirmación */
.list-group-item {
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item strong {
    font-weight: 600;
    min-width: 120px;
    display: inline-block;
}

/* Estilos para el panel de carga CSV */
.card {
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-body {
    padding: 1.5rem;
}

#btnLoadCSV {
    width: 100%;
    padding: 0.5rem;
}