/* 購物車容器樣式 */
#cartContainer {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.cart-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item p {
    margin: 0;
    font-size: 16px;
}

.cart-item button {
    margin-left: 10px;
}

.btn-update,
.btn-delete {
    padding: 5px 10px;
    font-size: 14px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.btn-update {
    background-color: #007bff;
    color: #fff;
}

.btn-delete {
    background-color: #dc3545;
    color: #fff;
}

.btn-update:hover {
    background-color: #0056b3;
}

.btn-delete:hover {
    background-color: #c82333;
}