/* ==============================
   Контейнер формы
   ============================== */
.payment-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* ==============================
   Быстрые кнопки выбора суммы
   ============================== */
.quick-amount-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.quick-amount {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #0073aa;
  background: #f8f9fa;
  color: #0073aa;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.quick-amount:hover {
  background: #0073aa;
  color: #fff;
}

/* ==============================
   Сообщения (аккаунт/баланс/транзакция)
   ============================== */
#account-pay,
#amount-pay {
  display: none;        /* скрыты по умолчанию */
  background: none;     /* убираем чёрный фон */
  padding: 0;
  margin: 4px 0;
  width: 100%;
  text-align: left;
  font-size: 14px;
}

#transnumber {
  margin: 10px 0;
  font-size: 14px;
  font-weight: 600;
}

#transnumber.text-warning {
  color: #f57c00; /* оранжевый */
}

#transnumber.text-danger {
  color: #d32f2f; /* красный */
}

/* ==============================
   Кнопка "Оплатить"
   ============================== */
#pay-common {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  
}

#pay-common:hover {
  background: #005f8d;
}

/* ==============================
   Блоки выбора способа оплаты
   ============================== */
#pay-rub,
#pay-sbp {
  width: 100%;
  border: solid 1px #FF3838;
  border-radius: 25px;
  margin-bottom: 10px;
  background: none;
  min-height: 100px;
  transition: border-color 0.3s ease;
}

#payment img {
  max-height: 80px;
  padding: 15px;
}

#pay-rub:hover,
#pay-sbp:hover {
  border-color: #fff;
}

/* Маленькая красная кнопка */
.my.button-small {
  width: 25% !important;
  margin-left: 15px;
  background-color: #FF3838 !important;
  color: #fff !important;
  border: none;
}

/* ==============================
   Прочее
   ============================== */
.bi-faq-content-area {
  max-width: unset;
}
