/* جعبه اصلی */
.baloan-otp-box,
.baloan-receipt {
  max-width: 420px;
  margin: 50px auto;
  padding: 25px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: "IRANSans", sans-serif;
  direction: rtl;
}

/* عنوان‌ها */
.baloan-otp-box h2,
.baloan-receipt h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

/* توضیحات */
.baloan-otp-box p,
.baloan-receipt p {
  margin: 8px 0;
  font-size: 14px;
  color: #555;
}

/* ورودی OTP */
#baloan-otp {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 15px 0;
  transition: all 0.3s;
}
#baloan-otp:focus {
  border-color: #0086f9;
  box-shadow: 0 0 6px rgba(0, 134, 249, 0.3);
  outline: none;
}

/* دکمه‌ها */
#baloan-otp-submit,
#baloan-otp-resend,
#baloan-otp-cancel,
.baloan-receipt a.button {
  display: inline-block;
  margin: 8px 5px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

#baloan-otp-submit,
.baloan-receipt a.button {
  background: #0086f9;
  color: #fff;
}
#baloan-otp-submit:hover,
.baloan-receipt a.button:hover {
  background: #006cd2;
}

#baloan-otp-resend {
  background: #f5f5f5;
  color: #444;
}
#baloan-otp-resend:hover {
  background: #e0e0e0;
}

#baloan-otp-cancel {
  background: #ff4d4d;
  color: #fff;
}
#baloan-otp-cancel:hover {
  background: #d93636;
}

/* تایمر و پیام‌ها */
#baloan-otp-timer,
#baloan-otp-result,
#baloan-countdown {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

/* رسید بانکی */
.baloan-receipt img.baloan-logo {
  width: 70px;
  margin-bottom: 15px;
}
.baloan-receipt p strong {
  color: #222;
}

/* ریسپانسیو */
@media (max-width: 480px) {
  .baloan-otp-box,
  .baloan-receipt {
    margin: 20px;
    padding: 20px;
  }
  #baloan-otp {
    font-size: 14px;
  }
  #baloan-otp-submit,
  #baloan-otp-resend,
  #baloan-otp-cancel {
    font-size: 13px;
    padding: 8px 14px;
  }
}
