body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

h1 {
    text-align: center;
}

#cart-items {
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #eee;
}

.cart-item .item-name {
    flex: 2;
}

.cart-item .item-price {
    flex: 1;
    text-align: center;
}

.cart-item .item-quantity {
    flex: 1;
    text-align: center;
}

.cart-item .item-total {
    flex: 1;
    text-align: center;
}

.cart-item .remove-item {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

#cart-total {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

#clear-cart {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}