.deposit-form {
    
    /* สไตล์โดยรวมของฟอร์ม */
    margin-top: 50px;
    width: 360px;
    padding: 20px;

  }
  
  .amount-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); /* ปรับขนาดขั้นต่ำของแต่ละคอลัมน์ */
    gap: 10px; /* ระยะห่างระหว่างปุ่ม */
    margin-top: 20px;
    margin-bottom: 20px;
    
  }
  
  .amount-button {

    /* สไตล์ปุ่มตัวเลือกจำนวนเงิน */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #666;
    cursor: pointer;
    color: #fff;
  }
  
  .amount-button:hover {
    background-color: #e0e0e0;
    color: #000;
  }
  
  #custom-amount {
    /* สไตล์ช่องกรอกจำนวนเงิน */
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .submit-button {
    /* สไตล์ปุ่มยืนยัน */
    display: block;
    width: 100%;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: rgb(71, 164, 252);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .text-description {
    font-size: 12px;
    margin-bottom: 60px;
  }



















  


  .bank-card {
    width: 300px;
    height: auto;
    background: linear-gradient(135deg, #007bff, #00c4ff);
    border-radius: 10px;
    color: #fff;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .card-header {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .card-body .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  .card-body .info-item i {
    margin-right: 8px;
    color: #fff;
    font-size: 16px;
  }
  
  .card-body .info-item span {
    margin-right: 5px;
    color: #ddd;
  }
  
  .card-body .info-item strong {
    color: #fff;
  }
  
  @media (max-width: 600px) {
    .bank-card {
      width: 330px;
      padding: 15px;
    }
  
    .card-body .info-item {
      font-size: 12px;
    }
  }