
  .cart {
    display: flex;
    align-items: center;
    gap: 15px; /* Add spacing between the icon and text */
    font-size: 16px; /* Optional: Adjust font size for better alignment */
  }
  
  .cart span:first-child {
    margin-right: 10px; /* Fine-tune spacing if needed */
  }
  
  .account-header {
    background-image: url(image.png);
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: overlay;
    color: #fff;
    text-align: center;
    padding: 192px 20px;
    padding-bottom: 103px;
  }

  .account-header h1 {
      margin: 0;
      font-size: 36px;
  }

  .account-header p {
      margin: 10px 0 0;
      font-size: 18px;
  }

  /* Tabs */
  .tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3%;
    gap: 10px;
    margin-top: 3%;
  }
  
  .tabs button {
    background: linear-gradient(to right, #2F2B8C, #04BFBF); /* Gradient color */
    color: #fff;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 15px;
}
  
  .tabs button:hover {
    background: linear-gradient(to right, #2e2b8ccc, #04bfbfba); /* Gradient color */
  }
  
  /* Table */
  .order-table {
    width: 100%;
    max-width: 800px;
    margin: 5% auto;
    background-color: #fff;
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  

  .order-table th, .order-table td {
    padding: 10px;
    text-align: center;
  }
  
  .order-table th {
    background: #2F2B8C; /* Gradient color */
    color: white;
  }
  
  .order-table tr:hover {
    background: #ddd;
  }
  
  .order-table button {
    background: linear-gradient(to right, #2e2b8ccc, #04bfbfba); /* Gradient color */
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .order-table button:hover {
    background: linear-gradient(to right, #2e2b8ccc, #04bfbfba); /* Gradient color */
  }

  