/* Clases de color para las categorías */
.bg-rojo { background-color: #dc3545 !important; }
.bg-azul { background-color: #007bff !important; }
.bg-verde { background-color: #28a745 !important; }
.bg-amarillo { background-color: #ffc107 !important; }
.bg-gris { background-color: #6c757d !important; }
.bg-negro { background-color: #000000 !important; }
.bg-naranja { background-color: #fd7e14 !important; }
.bg-morado { background-color: #6f42c1 !important; }

/* Colores de texto para cada categoría */
.text-rojo { color: #dc3545 !important; }
.text-azul { color: #007bff !important; }
.text-verde { color: #28a745 !important; }
.text-amarillo { color: #ffc107 !important; }
.text-gris { color: #6c757d !important; }
.text-negro { color: #000000 !important; }
.text-naranja { color: #fd7e14 !important; }
.text-morado { color: #6f42c1 !important; }

/* Colores de borde para cada categoría */
.border-rojo { border-color: #dc3545 !important; }
.border-azul { border-color: #007bff !important; }
.border-verde { border-color: #28a745 !important; }
.border-amarillo { border-color: #ffc107 !important; }
.border-gris { border-color: #6c757d !important; }
.border-negro { border-color: #000000 !important; }
.border-naranja { border-color: #fd7e14 !important; }
.border-morado { border-color: #6f42c1 !important; }

/* Estilos para los badges de categoría */
.categoria-badge {
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
}

.bg-blanco {
    background-color: #f8f9fa !important;
    color: #000 !important;
}

.text-blanco {
    color: #f8f9fa !important;
}

.border-blanco {
    border-color: #f8f9fa !important;
}