.amount-input-container {
    /* Gray background + pill shape */
      background-color: #F5F5F5;
      border-radius: 30px;
      padding: 15px 20px;
  }
  
  .amount-label {
    font-size: 14px;
    margin: 0 0 6px;
    color: #7a7a7a;
  }
  
  .payment-input {
    background-color: transparent !important;
    border: none;
    outline: none;
      margin-left: -25px;
      font-size: 30px !important;
      line-height: 1.2em;
    width: 100%;
      color: black !important;
      font-weight: 500;
      height: 40px !important;
  }
  
  
  
  /* Container: a centered card with some padding and subtle shadow */
  #dynamic-payment-container {
      max-width: 420px;
      margin: 2rem auto;
      /*padding: 2rem;*/
      background: #fff;
      border-radius: 12px;
      /*box-shadow: 0 4px 24px rgba(0,0,0,0.1);*/
  }
  
  /* Title: 25px bold, black text with spacing below */
  .payment-title {
      font-size: 25px;
      font-weight: bold;
      color: #000;
      margin-bottom: 1.5rem;
      text-align: left; /* or center, if you prefer */
  }
  
  /* Form wrapper: vertical stacking */
  .payment-form {
      display: flex;
      flex-direction: column;
      gap: 1rem; /* space between input, amounts, and button */
  }
  
  /* Input: 70px height, background #F5F5F5, normal placeholder, 30px radius */
  .payment-input {
      width: 100%;
      height: 70px;
      background: #F5F5F5;
      border: none;
      border-radius: 30px;
      padding: 0 1.5rem; /* left/right padding */
      font-size: 16px;
      color: #000;
      outline: none;
  }
  
  /* Container for the preset amounts (flex row, wrapping if needed) */
  .amount-options {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem; /* space between pills */
  }
  
  /* Each preset “pill” */
  .amount-option {
      background: #F5F5F5;
      border-radius: 30px;
      padding: 10px 20px;
      cursor: pointer;
      font-size: 16px;
      color: #000;
      border: none; /* remove default button border if any */
      display: inline-flex;
      align-items: center;
      transition: background 0.2s ease;
  }
  
  .currency-symbol {
      padding-inline-end: 2px;
      font-size: 14px;
      color: #555;
  }
  
  /* Hover effect for each preset pill */
  .amount-option:hover {
      background: #e2e2e2;
  }
  
  /* The “Pay” button: black background, white text, 30px radius, full width */
  .pay-button, #place_order {
      width: 100%;
      height: 60px;
      background: #000;
      color: #fff;
      border: none;
      border-radius: 30px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      outline: none;
      transition: opacity 0.2s ease;
  }
  .pay-button br{
    display: none;
  }
  
  /* Hover effect for the pay button */
  .pay-button:hover {
      opacity: 0.8;
  }
  
  /* Footer note below the form */
  .secured-transaction {
      margin-top: 1.5rem;
      text-align: center;
      font-size: 0.9rem;
      color: #666;
  }
  
  
  .order-total {
      color: black;
      font-weight: bold;
      font-size: 35px;
  }
  
  @media only screen and (max-width: 600px) {
      .order-total{
          font-size: 25px !important;
      }
  }
  