.withdraw-history-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #fff;
    text-align: center;
  }
  .withdraw-history-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
  }
  .withdraw-history-container table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(0,0,0,0.3);
    border-radius: 25px;
    overflow: hidden;
  }
  .withdraw-history-container thead {
    background-color: rgba(255,255,255,0.02);
  }
  .withdraw-history-container tfoot td {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.338);
  }
  .withdraw-history-container th,
  .withdraw-history-container td {
    padding: 10px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    border: none;
  }
  .withdraw-history-container th {
    text-transform: uppercase;
    font-size: 1.05rem;
    font-weight: 700;
    border-bottom: 2px solid #ff66c4;
  }
  .withdraw-history-container td {
    background-color: rgba(255,255,255,0.01);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .withdraw-history-container tr:hover td {
    background-color: rgba(255,255,255,0.05);
  }
  .cur-icon {
    width: 26px;
    height: 26px;
    margin-right: 5px;
    vertical-align: middle;
  }
  .hash-link {
    color: #00bfff;
    text-decoration: none;
  }
  .hash-link:hover {
    text-decoration: underline;
  }
  .network-trc {
    color: #ff4242;
  }
  .status-success {
    color: #00ff00;
  }
  .no-kyc-text {
    margin-top: 10px;
    font-size: 0.75rem;
    color: #ccc;
    text-align: center;
    font-weight: 600;
  }
  .desktop-only {
    display: table-cell;
  }
  .mobile-only {
    display: none;
  }
  #td-id {
    text-decoration: none;
    color: white;
  }
  
  /* Для экранов до 1577px */
  @media (max-width: 1577px) {
    .withdraw-history-container {
      max-width: 900px;
    }
  }
  
  /* Для экранов до 992px */
  @media (max-width: 992px) {
    .withdraw-history-container {
      max-width: 900px;
      padding: 30px 15px;
    }
    /* На этих размерах столбцы с классом desktop-only остаются видимыми, если не переопределять ниже */
  }
  
  /* Для экранов до 768px – скрываем desktop-only, показываем mobile-only */
  @media (max-width: 768px) {
    .withdraw-history-container {
      max-width: 100%;
      padding: 20px 10px;
    }
    .withdraw-history-container h2 {
      font-size: 1.15rem;
    }
    .withdraw-history-container table {
      min-width: 600px;
    }
    .withdraw-history-container th,
    .withdraw-history-container td {
      font-size: 0.75rem;
      padding: 6px;
    }
    .cur-icon {
      width: 20px;
      height: 20px;
    }
    .desktop-only {
      display: none;
    }
    .mobile-only {
      display: table-cell;
    }
  }
  .status-text {
    color: rgb(19, 220, 19);
  }
  
  /* Для экранов до 620px */
  @media (max-width: 620px) {
    .withdraw-history-container h2 {
      font-size: 1rem;
    }
    .withdraw-history-container th,
    .withdraw-history-container td {
      font-size: 0.7rem;
      padding: 5px;
    }
    .cur-icon {
      width: 18px;
      height: 18px;
    }
    .withdraw-history-container table {
      min-width: 550px;
    }
  }
  
  /* Для экранов меньше 570px – показываем только ID, DATE, AMOUNT и VIEW DETAILS, увеличиваем шрифт */
  @media (max-width: 570px) {
    .withdraw-history-container h2 {
      font-size: 1.1rem;
    }
    .withdraw-history-container th,
    .withdraw-history-container td {
      font-size: 0.85rem;
      padding: 8px;
    }
    /* Обязательно скрываем все desktop-only (остальные столбцы) */
    .desktop-only {
      display: none;
    }
    /* Оставляем mobile-only видимыми */
    .mobile-only {
      display: table-cell;
    }
    /* Если требуется убрать пустое пространство – можно установить min-width таблицы равным 100% */
    .withdraw-history-container table {
      min-width: 100%;
    }
  }
  