#product_table .product{
    cursor: pointer;
}

#product_table .product:hover{
    background-color: rgba(255, 255, 255, 0.15);
}


.product_menu {
    cursor: pointer;
}

.product_menu:hover{
    background-color: rgba(255, 255, 255, 0.15);
}

.product_menu:has(input:checked) {
    background-color: rgba(4, 0, 255, 0.15);
}

#product_table .product-disabled {
    cursor: not-allowed;
    opacity: 0.45;
}
#product_table .product-disabled:hover {
    background-color: transparent;
}