/* CSS para thumbnails de produtos */
/* Ajustar tamanho dos thumbnails na tabela */
.filament-tables-table .w-12.h-12 {
    width: 48px;
    height: 48px;
}

.filament-tables-table .w-12.h-12.rounded-full {
    border-radius: 50%;
}

.filament-tables-table .w-12.h-12.object-cover {
    object-fit: cover;
}

/* Classes específicas para thumbnails */
.product-thumbnail {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.product-thumbnail-fallback {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e5e7eb;
    color: #9ca3af;
    font-size: 12px;
}

.product-thumbnail-fallback-icon {
    width: 32px;
    height: 32px;
    opacity: 0.4;
} 