.emptyCartContainer{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.emptyCartContainer > img{
    display: block;
    width: 200px;
    margin: 0px 100px 0px 20px;
}
.emptyCartContainer > h2{
    color: red; 
    align-self: center;
}
.cartTotalQty{
    margin-left: 20px;
    font-size: 25px;
    font-weight: 700;
    color: #5786b5;
}
.shoppingCartTable {
    margin-left: 20px;
    width: 95%;
    background-color: #d3f1f6;
    border-collapse: separate;
    border-spacing: 0;
}
.shoppingCartTable tr {
    background-color: #d3f1f6;
}
.shoppingCartTable td {
    border: none;
    padding: 10px;
}
.shoppingCartTable tr:not(:last-child) td {
    border-bottom: 10px solid white;
}
.cartTableText{
    font-size: 20px;
}
.shoppingCartImg{ 
    width: 100px;
    height: 100px;
    object-fit: contain;
    background-color: white;
}
.qtyInput{
    font-size: 20px;
    text-align: center;
    width: 50px;
}
.qtyInput::-webkit-inner-spin-button,
.qtyInput::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qtyButton {
    cursor: pointer;
    background-color: #6cbce4;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    text-align: center;
    margin: 2px 10px;
    border-radius: 10px;
    font-size: 26px;
}
.qtyButton:hover {
    background-color: #5786b5;
}
.deleteButton{
    cursor: pointer;
    background-color: #6cbce4;
    border: none;
    color: white;
    width: 50px;
    height: 40px;
    text-align: center;
    border-radius: 10px;
    font-size: 16px;
}
.deleteButton:hover {
    background-color: #5786b5;
}
.totalPrice {
    font-size: 20px;
    font-weight: 700;
    color: #5786b5;
}
   