
.store-blocks-product-table {
	width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
	border: 1px solid #ddd;
	table-layout: auto;

	th,
	td {
		border-bottom: 1px solid #ddd;
		border-collapse: collapse;
		padding: 5px;
		vertical-align: middle;
		
		.store-blocks-quantity-action{
			display: flex;
			gap:5px;
			align-items: center;
			.quantity {
				width: 48px;
			}
			button{
				background: none !important;
				padding: 0 !important;
				border: none !important;
				cursor: pointer !important;
				span.dashicons.dashicons-cart{
					font-size: 25px;
				}
			}
		}	

	}


	/* Responsive styles */
	@media (max-width: 425px) {

		th,
		td {
			font-size: 12px;
			padding: 6px;
	
		}
	}

	@media (max-width: 768px) {

		th,
		td {
			font-size: 14px;
			padding: 7px;
		}
	}

	@media (max-width: 1024px) {

		th,
		td {
			font-size: 16px;
			padding: 8px;
		}
	}

	@media (min-width: 1025px) {

		th,
		td {
			font-size: 18px;
			padding: 10px;
		}
	}
}