body{
    font-family: 'Roboto', sans-serif !important;
    font-weight: normal !important;
}
/* Estilos para las filas alternadas */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #c7e3ff !important; /* Color de fondo para filas impares */
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #e9ecef !important; /* Color de fondo para filas pares */
}

/* Estilos para hover */
.table-hover tbody tr:hover {
    background-color: #2b59ff !important; /* Color de fondo al pasar el cursor por encima */
}
/* Cambiar el color de toda la fila al hacer hover */
.table-hover tbody tr:hover td {
    color: white !important; /* Cambiar color de fondo de todas las celdas al hacer hover */
}
.table-hover tbody tr:hover td a{
    color: white !important;
}
