   /* Estilo para el select con border gris y fondo blanco */
   .selectpicker {
    border: 1px solid #ced4da;
    /* Color del borde gris */
    background-color: #ffffff;
    /* Fondo blanco */

}

/* Opcional: Personalización adicional para mejorar la apariencia del selectpicker */
.bootstrap-select .dropdown-toggle {
    border: 1px solid #ced4da;
    /* Color del borde gris */
    background-color: #ffffff;
    /* Fondo blanco */
}

.bootstrap-select .dropdown-menu {
    background-color: #ffffff;
    /* Fondo blanco del menú desplegable */
    border: 1px solid #ced4da;
    /* Borde gris del menú desplegable */
}

table {
    color: #333;
}

thead th {
    background-color: #555;
    color: #fff;
}

h3 {
    background: #E30613;
    color: #fff;
}

label {
    font-weight: bold;
    font-size: 1.2rem;
    color: #E30613;
}