/* styles.css */

.quantity-button {
    background-color: #000000;
    color: white;
    border: none;
    padding: 2px 10px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 5px;
    transition: background-color 0.3s ease;
    border-radius: 7px;
}

.quantity-button:hover {
    background-color: #2980b9;
}

table{
	width:100%
}
table tr,th,td
{
	text-align:center;
	border:1px solid #c8c8c8;
	padding: 5px;
}