
* {
  box-sizing: border-box;
}
 
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: #FFDEE9;
background-image: linear-gradient(0deg, #FFDEE9 0%, #B5FFFC 100%);

  font-family: 'Roboto', sans-serif;
}


.shopping-cart {
    min-width:725px;
  max-width: max-content;
  margin: 80px auto;
  background-color: #FFDEE9;
  
  box-shadow: 1px 2px 3px 0px rgba(0,0,0,0.10);
  border-radius: 6px;
  height: max-content;
  display: flex;
  flex-direction: column;
  padding:10px;
}

.title {
  height: 60px;
  border-bottom: 1px solid #f3a2ca;
  padding: 20px 30px;
  color: #E90074;
  font-size: 18px;
  font-weight: bold;
}
 

  
  /* Item container */
  .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    
  }
  
  .item:last-child {
    border-bottom: none;
  }
  
  /* Buttons for quantity adjustment */
  button {
    padding: 5px 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #FF4191;
    color: #fff;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #920faf;
  }
  
  /* Quantity span */
  span {
    margin: 0 10px;
    font-size: 18px;
  }
  
  /* Empty cart message */
  #cart-items-container p {
    text-align: center;
    color: #777;
    padding: 20px 0;
    font-size: 18px;
  }
  
  /* Total price section */
  .total-price {
    margin-top: 20px;
    text-align: right;
    font-size: 20px;
    font-weight: bold;
    color: #333;
  }
  
  .total-price span {
    color: #E90074;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .shopping-cart {
      width: 95%;
    }
  
    .item {
      flex-direction: column;
      align-items: flex-start;
    }
  
    button {
      margin-top: 5px;
    }
  }
  
  .item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 5px;
}
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  .cart-table th, .cart-table td {
   
    padding: 10px;
    text-align: center;
  }
  
  .cart-table th {
    color:#8E3E63;
    font-weight: bold;
    font-size: medium;
  }
  
  .item-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
  }
  
  .cart-row button {
    margin: 0 5px;
  }
  .removebtn{
    font-size: small;
    padding-block: 8px;
    padding-inline: 16px;;
   
  }
  