body {
    background-color: #f4f7fc; /* Un fondo más suave y profesional */
    font-family: Arial, Helvetica, sans-serif; /* Tipografía más neutral */
}

/* Estilo para las tablas */
th, td {
    font-size: 14px;
    padding: 10px;
    text-align: left;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

th {
    background-color: #f8f9fa;
    font-weight: bold;
}

/* Botones */
.btn-sm {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 5px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

/* Estilo para el formulario */
form.row {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); /* Sombra más suave */
    margin-bottom: 20px;
}

/* Campos de formulario */
input, select, textarea {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 8px;
    width: 100%;
    margin-top: 5px;
}

input:focus, select:focus, textarea:focus {
    border-color: #66afe9; /* Color al enfocar */
    outline: none;
}

label {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Estilo para las columnas del formulario */
.col-md-2, .col-md-6 {
    margin-bottom: 15px;
}

/* Diseño del formulario en dispositivos móviles */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 15px;
    }

    .col-md-2, .col-md-6 {
        width: 100%; /* Hacer que los elementos del formulario sean más flexibles en móviles */
    }
}