/* Asegura que el footer esté siempre al fondo */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Resalta el elemento activo en el menú de categorías */
.category-item.active {
    background-color: #007bff !important; /* Color de fondo activo */
    color: white !important; /* Texto en blanco */
}

.category-item.active a {
    color: white !important; /* Texto en blanco para el enlace */
}
