
  
  .item-details {
    margin-left: 20px;
  }
  
  .item-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .item-details p {
    margin: 0;
  }
  
  .item-details .update-quantity button {
    margin-right: 5px;
  }
  
  .item-details img {
    width: 100px; 
    height: auto; 
  }


  .cart-item img {
    width: 100px; 
    height: auto;
    margin-right: 20px; 
  }
  
  .item-details {
    flex: 1;
  }


  
  .cart-item img {
    width: 100px;
    height: auto;
    margin-right: 20px;
  }
  
  .item-details {
    flex: 1;
  }
  
  .item-details h3 {
    margin-top: 0; 
  }
  
  .update-quantity button,
  .remove-item button {
    background-color: #f0f0f0;
    border: none;
    color: #555;
    cursor: pointer;
    font-size: 16px;
    padding: 5px 10px;
    margin-right: 5px;
  }
  
  .update-quantity button:hover,
  .remove-item button:hover {
    background-color: #ddd;
  }
  
  .remove-item button {
    background-color: #f44336;
    color: white;
  }
  
  .remove-item button:hover {
    background-color: #d32f2f;
  }
  
  #total-cost {
    margin: 20px auto; 
    font-size: 20px;
    font-weight: bold;
    text-align: center; 
  }
  
  #checkout-btn {
    background-color: #4caf50;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin: 20px auto; 
    display: block; 
  }
  
  #checkout-btn:hover {
    background-color: #45a049;
  }

  .cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-left: 100px;
    margin-right: 100px;
    padding: 10px;
    border: 2px solid #aaa;
    border-radius: 10px;
  }
