 .cart {
        font-family: sans-serif;
     
      padding: 20px;
      max-width: 800px;
      margin: auto;
      background: white;
      padding: 20px;
       
    }

    .cart-item {
      display: flex;
      align-items: center;
      justify-content: space-between;   
      border-bottom: 1px solid #ddd;
      padding: 10px 0;
    }
 
    .item-name {
      font-size: 16px;
     padding: 10px;
      width: 300px;
    }

    .item-price {
      color: #555;
      padding: 10px;
    }

     
    .item-total {
      font-weight: bold;
    }

    .cart-footer {
      text-align: right;
      margin-top: 20px;
      font-size: 18px;
      font-weight: bold;
    }