body {
    background-color: rgb(253, 250, 241);
}
.cartContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.cartContainer h2 {
    font-size: 40px;
    margin: 30px;
}
.cartList {
    width: 95%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px red dashed;
}

.cartListTable {
    margin: 20px 0;
    width: 95%;
    border-collapse: collapse;
}
.cartListTable thead {
    border-bottom: 1px rgb(186, 192, 171) solid;
}
.regItem {
    text-align: left;
    padding-left: 20px;    
}
.cartListTable th {
    padding-bottom: 15px;
}
.cartListTable td {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 50px;
}
.cartListBody {
    border-radius: 10px;
}
.cartListBody:hover {
    border-radius: 10px;
    background-color: rgb(239, 229, 201);
    box-shadow: 3px 3px 5px;
    transition: 0.3s;
}
.centerItem {
    text-align: center;
}
.itemDetails {
    display: flex;
    align-items: center;
}
.cartItemImage {
    width: 100px;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}
.cartItemName {
    padding-left: 20px;
    margin: auto 0;
}
.removeBttn {
    background-color: transparent;
    border: none;
}
.removeIcon {
    color: rgb(52, 63, 30);
    font-size: 18px;
}
.removeIcon:hover {
    color:red;
    cursor: pointer;
}
.quantityControls {
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: center;
    justify-content: center;
}
.qtyButton {
    color: rgb(92, 134, 7);
    border: none;
    background: none;
}
.qtyButton:hover {
    color: rgb(112, 163, 9);
}
.cartTotalContainer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(227, 233, 216);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    padding: 15px 30px;
    z-index: 999;
    border-top: 2px solid #e0e0e0;  
}
.cartTotalDetails {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 50px;
}
.checkoutBttn {
    background-color: rgb(92, 134, 7);
    border: none;
    border-radius: 50px;
    width: 150px;
    padding: 10px 0;
    color: rgb(253, 250, 241);
    font-weight: bold;
}
.checkoutBttn:hover {
    background-color: rgb(112, 163, 9);
}

