body {
    font-family: Arial, sans-serif;
    margin: 0;
    /* padding: 20px; */
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background-color: #ededed;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-actions {
    display: flex;
    gap: 10px;
}

.cart-items-container {
    margin-top: 20px;
}

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

th, td {
    border: 1px solid #f00000;
    padding: 1px;
    text-align: center;
}

.quantity-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
}
tr th{
    font-size: 50%;
}

.quantity-controls button {
    width: 30px;
    height: 30px;
    font-size: 20px;
    margin: 5px 0;
}

button {
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #218838;
}

.cart-icon {
    position: fixed;
    top: 90px;
    right: 20px;
    font-size: 2em;
    cursor: pointer;
    z-index: 1000;
}

.remove-btn {
    background-color: #dc3545;
}

.remove-btn:hover {
    background-color: #c82333;
}
