.itemLista {
    color: #000;
    font-weight: normal;
    transition: background-color 0.3s ease, color 0.3s ease; /* Efecto de transición */
}

.itemLista:hover {
    background-color: #f0f0f0; /* Cambia el fondo al pasar el mouse */
    color: #007bff; /* Cambia el color del texto al pasar el mouse */
}

.itemLista.active {
    color: white !important;
    font-weight: bold;
    background-color: #007bff; /* Color de fondo cuando está activo */
}

.active-select {
    border: 2px solid blue;
    background-color: #f0f8ff;
}

.btnFechas.active {
    color: white !important;
    /*font-weight: bold;*/
    background-color: #007bff; /* Color de fondo cuando está activo */
}

.checkbox-large {
    width: 20px;
    height: 20px;
}