.mobile-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #6b6b6b70;
  border-top: 1px solid #e1e1e2;
  z-index: 50;

  box-shadow: 0px 0px 10px #c5772c;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-top: solid 1px #c5772c;
  backdrop-filter: blur(20px);
}

.nav-item {
  flex: 1;
  text-align: center;
  font-size: 13px;
  color: #000;
  cursor: pointer;
  position: relative;
}

.mobile-nav .nav-item {
  display: grid;
  justify-items: center;
}

.mobile-nav .nav-item:hover,
.mobile-nav .nav-item.active {
  color: #c5772c;
}

.nav-item img {
  width: 25px;
  height: 25px;
}

.center-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.center-icon img {
  width: 45px;
  height: 45px;
}

.nav-item.center span {
  display: block;
  margin-top: 35px;
}

* {
  box-sizing: border-box;
  font-family: "Noto Sans Khmer", sans-serif;
}

body {
  margin: 0;
  background: radial-gradient(circle at right, #ef9248, #fff);
  color: black;
}

.page {
  padding-top: 20px;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.back {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #ef9248;
  color: #c5772c;
  font-size: 18px;
  cursor: pointer;
}

.header h2 {
  margin: 0 auto;
  font-size: 18px;
}

/* Tabs */
.tabs {
  display: flex;
  background: #fff;
  border-radius: 30px;
  margin: 20px 0;
  box-shadow: 0px 0px 20px #c5772c;
}

.tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  border-radius: 30px;
  color: black;
  cursor: pointer;
}

.tab.active {
  background: linear-gradient(#ffbb97, #ef9248);
  color: #fff;
  font-weight: 600;
  box-shadow: 0px 0px 20px #c5772c;
}

/* Balance */
.balance-1 span {
  font-size: 14px;
  color: black;
}

.balance-2 span {
  margin: 5px 0 15px;
  color: #865134;
}

.balance-2 .balance-currency,
.balance-2 .balance-amount {
  font-size: 30px;
  font-weight: 600;
}

/* Divider */
hr {
  border: none;
  height: 1px;
  background: #444;
  margin: 20px 0;
}

/* Cards */
.cards {
  display: flex;
  gap: 12px;
}

.card {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px #c5772c;
  border: transparent;
  cursor: pointer;
}

.card.active {
  background: linear-gradient(to bottom, #ffbb97, #ef9248);
}

.bank {
  font-weight: 600;
}

.acc {
  font-size: 14px;
  margin-top: 5px;
}

.name {
  font-size: 13px;
  color: gray;
}

/* Form */
.label {
  display: block;
  margin: 20px 0 8px;
  font-size: 14px;
}

.amount-input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  font-size: 16px;
}

/* Quick amount */
.quick-amount {
  display: flex;
  gap: 5px;
  margin-top: 12px;
}

.quick-amount button {
  flex: 1;
  padding: 8px;
  background: #333;
  border: none;
  border-radius: 8px;
  color: #fff;
}

.quick-amount .active {
  background: #555;
}

/* Upload */
.upload input {
  width: 100%;
  background: #111;
  color: #ccc;
  padding: 10px;
  border-radius: 8px;
  /* border: 1px solid #444; */
  box-shadow: 0px 0px 20px #c5772c;
}

.qr {
  color: #399fda;
  font-size: 13px;
  margin-top: 8px;
  font-weight: bold;
}
.submit {
  margin: 30px auto 0;
  display: block;
  padding: 10px 30px;
  background: linear-gradient(#ffbb97, #ef9248);
  box-shadow: 0px 0px 20px #c5772c;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
}
