/* styles/balanceInfoStyle.css */
.balance-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #fff;
    text-align: center;
  }
  .balance-info-title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
  }
  .balance-info-tabs {
    display: inline-flex;
    gap: 40px;
    margin-bottom: 30px;
  }
  .balance-tab {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    padding-bottom: 5px;
    transition: color 0.3s;
  }
  .balance-tab:hover {
    color: #ff66c4;
  }
  .balance-tab.active {
    color: #ff66c4;
    font-weight: 700;
  }
  .balance-forms-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
  }
  .tab-content {
    display: none;
    text-align: left;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .tab-content.active {
    display: block;
  }
  .tab-content.fade-in.active {
    opacity: 1;
  }
  .deposit-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  .deposit-methods-block {
    background-color: transparent;
    padding: 20px 0;
    min-width: 200px;
    text-align: center;
  }
  .methods-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
  }
  .method-buttons-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .method-btn {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 50px;
    gap: 5px;
  }
  .method-btn img {
    height: 25px;
  }
  .crypto-btn img {
    width: 25px;
  }
  .method-btn:hover {
    background-color: #ff66c4;
    color: #fff;
  }
  .method-btn.active {
    background-color: #ff66c4;
    color: #fff;
  }
  .deposit-form-block {
    flex: 1;
    min-width: 300px;
  }
  .deposit-details {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .deposit-details.active {
    display: block;
  }
  .deposit-details.fade-in.active {
    opacity: 1;
  }
  .deposit-inner-box {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    background-color: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 25px;
  }
  .deposit-top-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
  }
  .deposit-dropdown {
    position: relative;
  }
  .dropdown-btn {
    background-color: #000;
    border: 2px solid #c45b7a;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 150px;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  .dropdown-arrow {
    transition: transform 0.3s ease;
  }
  .dropdown-btn.open .dropdown-arrow {
    transform: rotate(180deg);
  }
  .dropdown-content {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    background: #000;
    color: #fff;
    border: 2px solid #c45b7a;
    border-radius: 5px;
    min-width: 150px;
    z-index: 12;
  }
  .dropdown-content a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
  }
  .crypto-dropdown-icon {
    width: 20px;
    height: 20px;
  }
  .dropdown-content a:hover {
    background-color: #c45b7a;
  }
  .deposit-amount input {
    background-color: #000;
    border: 2px solid #c45b7a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    width: 150px;
    text-align: center;
    transition: box-shadow 0.3s ease;
  }
  .deposit-amount input:focus {
    box-shadow: 0 0 10px #c45b7a, 0 0 20px #c45b7a;
  }
  .deposit-amount input::placeholder {
    color: #ccc;
    font-size: 1.2rem;
  }
  .select-bonus-title {
    text-align: center;
    margin: 20px 0 10px 0;
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
  }
  .bonus-carousel-section {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .swiper.bonus-swiper,
  .swiper.visa-swiper {
    width: 500px;
    max-width: 100%;
    margin: 0 auto 20px auto;
    position: relative;
  }
  .swiper-wrapper {
    transition: transform 0.5s ease;
  }
  .swiper-slide {
    display: flex;
    justify-content: center;
  }
  .swiper-slide img {
    max-width: 90%;
    border-radius: 25px;
  }
  .swiper-pagination {
    position: static !important;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .swiper-pagination-bullet {
    width: 20px;
    height: 8px;
    background: #fff;
    opacity: 0.5;
    border-radius: 20px;
    margin: 0 4px !important;
  }
  .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ff66c4;
  }
  .deposit-address-title {
    text-align: center;
    margin: 10px 0 10px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
  }
  .deposit-address-block {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
  }
  .deposit-address-block input {
    background-color: #000;
    border: 2px solid #c45b7a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    width: 300px;
    max-width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
  }
  #cryptoAdressWithDraw input {
    width: 100%;
  }
  .copy-btn {
    background-color: #c45b7a;
    border: none;
    color: #fff;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s, border 0.3s;
  }
  .copy-btn.copied {
    box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
    border: 2px solid #00ff00;
  }
  .copy-btn:hover {
    background-color: #e8527f;
  }
  .no-kyc-text {
    font-size: 0.75rem;
    color: #ccc;
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
  }
  .history-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
  }
  .history-section > div {
    background-color: rgba(0,0,0,0.3);
    border-radius: 25px;
    padding: 20px;
  }
  .history-section h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    text-align: center;
  }
  .history-section table {
    border-collapse: collapse;
    width: 100%;
    color: #fff;
    background-color: transparent;
  }
  .history-section th,
  .history-section td {
    border: none;   
    padding: 10px 15px;
    text-align: center;   
    font-weight: 600;   
    font-size: 1rem;    
    font-family: 'Montserrat', sans-serif;
  }
  .history-section th {
    font-size: 1.05rem; 
    font-weight: 700;
  }
  .history-section td {
    background-color: rgba(255, 255, 255, 0.010);
  }
  .cur-icon {
    width: 26px;
    height: 26px;
    margin-right: 5px;
  }
  #view-history-btn {
    text-decoration: none;
    color: #ccc;
  }
  #view-history-btn:hover {
    text-decoration: underline;
  }
  .visa-inputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
  }
  .visa-field {
    background-color: #000;
    border: 2px solid #c45b7a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
    transition: box-shadow 0.3s ease;
  }
  .visa-field:focus {
    box-shadow: 0 0 10px #c45b7a, 0 0 20px #c45b7a;
  }
  .visa-submit-btn {
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: background-color 0.3s;
    display: block;
    margin: 0 auto;
    background: linear-gradient(135deg, #ff7e5f, #fd3a84);
  }
  .visa-submit-btn:hover {
    filter: brightness(1.1);
  }
  @media (max-width: 768px) {
    .deposit-content {
      flex-direction: column;
      align-items: center;
    }
    .deposit-form-block {
      margin-left: 10px;
      margin-right: 10px;
      max-width: 380px;
    }
    .deposit-inner-box {
      width: 100%;
    }
    .swiper-slide img {
      max-width: 60%;
    }
    .history-section {
      margin-left: 10px;
      margin-right: 10px;
    }
    .history-section h3 {
      font-size: 1.1rem;
    }
    .history-section th,
    .history-section td {
      font-size: 0.8rem;
    }
  }
  .crypto-icon {
    width: 20px;
    height: 20px;
  }
  .deposit-crypto-btn img{
    width: 25px;
  }
  .withdraw-crypto-btn img{
    width: 25px;
  }
  