/* Estilos específicos para la vista de Productos */

/* Contenedor de imagen en tabla */
.product-image-cell {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-base);
    background-color: var(--gray-100);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badge de categoría dinámico */
.category-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.category-med {
    background-color: #E3F2FD;
    color: #1976D2;
}

.category-hig {
    background-color: #E8F5E9;
    color: #2E7D32;
}

.category-med-eq {
    background-color: #FFF3E0;
    color: #F57C00;
}

/* Botón flotante para móvil (opcional) */
.fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--primary-500);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    z-index: 100;
    cursor: pointer;
    transition: transform 0.2s;
}

.fab:active {
    transform: scale(0.95);
}

@media (min-width: 768px) {
    .fab {
        display: none;
    }
}