  .cart-container {
      width: 1200px;
      margin: 20px;
      padding: 20px;
      border-radius: 6px;
      background: white;
  }

  @media screen and (max-width: 1200px) {
      .cart-container {
          width: calc(100% - 20px);
      }
  }

  @media screen and (max-width: 576px) {
      .cart-container {
          overflow-x: scroll !important;
          padding: 6px;
          margin: 6px;
      }
  }


  .cart-container table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
      overflow: scroll;
      min-width: 500px;
  }


  .cart-container table thead tr td{
    padding: 24px 0;
    font-weight: 500;
  }

  .cart-container table tr td {
      border-bottom: 1px solid rgb(83, 83, 83);
      text-align: center;
      padding: 8px;
      font-size: 14px;
  }
  .cart-container table tr td {
    text-align: left;
  }

  .quantity-container {
    max-width: 75px;
    padding: 6px;
  }

  .cartProductOperation {
    margin-top: 6px;
    color: rgb(194, 3, 3);
    text-decoration: underline;
    cursor: pointer;
  }

/* 
  .cart-container table tr td .quantity-container {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: row;
      gap: 10px;
      border-radius: 4px;
      padding: 4px;
      width: 100%;

  } */

  .cart-container table tr td .quantity-container .quantity-controls {
      padding: 10px;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 4px;
      background: #f0f0f0;
  }

  .cart-container table tr td .quantity-container .quantity-controls button {
      padding: 5px 10px;
      background: #ff99004b;
      color: #ff9900;
      font-weight: bold;
      font-size: 24px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .checkout-container {
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      margin-top: 20px;
  }

  .cart-btn-common {
      padding: 12px 30px;
      background: #ff9900;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      text-decoration: none;
  }

  .cart-btn-common.cart-btn-shopping {
      background: #797979;
  }


  .remove-operation-trash {
      cursor: pointer;
  }

  .remove-operation-trash ion-icon {
      color: red;
      font-size: 24px;
  }