.cart-container {
    padding: 20px;
    max-width: 1100px;
    margin: auto;
    width: 100%;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.cart-table img {
    max-width: 50px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-controls button {
    width: 30px;
    height: 30px;
    background-color: #f6881f;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
}

.quantity-controls button:hover {
    background-color: #34495e;
}

.quantity-controls .quantity {
    font-size: 16px;
    font-weight: bold;
}