body {
  color: #fff;
  background-color: #121212;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  display: flex;
}

.loading-screen {
  z-index: 100;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.loading-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.loading-screen p {
  font-size: 18px;
  font-weight: bold;
}

.navbar {
  box-sizing: border-box;
  background-color: #1e1e1e;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
  display: flex;
}

.left {
  align-items: center;
  display: flex;
}

.logo {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.connect-btn {
  color: #000;
  cursor: pointer;
  background-color: #f3ba2f;
  border: none;
  border-radius: 5px;
  flex-direction: column;
  align-items: center;
  padding: 5px;
  font-weight: bold;
  display: flex;
}

.connect-btn:hover {
  background-color: #daa520;
}

.hand-icon {
  border-radius: 50%;
  width: 25px;
  height: 25px;
}

.btn-text {
  font-size: 9px;
}

.connect-btn.connected .hand-icon {
  filter: brightness(.5) sepia() hue-rotate(100deg) saturate(5);
}

.connect-btn.connected {
  background-color: #4caf50;
}

.banner {
  color: #000;
  text-align: center;
  box-sizing: border-box;
  background-color: #f3ba2f;
  width: 100%;
  padding: 10px;
  font-weight: bold;
}

.swap-container {
  text-align: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
  padding: 0 10px;
}

.balance-section {
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 10px;
  margin-top: 20px;
  padding: 10px;
}

label {
  color: #bfbfbf;
  margin-bottom: 5px;
  font-size: 14px;
  display: block;
}

input {
  color: #fff;
  box-sizing: border-box;
  background-color: #2a2a2a;
  border: 1px solid #333;
  border-radius: 5px;
  width: 100%;
  margin: 5px 0;
  padding: 8px;
}

button {
  color: #000;
  cursor: pointer;
  background-color: #f3ba2f;
  border: none;
  border-radius: 5px;
  width: 77%;
  margin-top: 10px;
  padding: 10px 20px;
  font-weight: bold;
}

button:hover {
  background-color: #daa520;
}

button:disabled {
  cursor: not-allowed;
  background-color: #666;
}

#toOutput, #tokenBalance {
  color: #f3ba2f;
  margin-top: 5px;
  display: block;
}

#tokenBalancePrice {
  color: #bfbfbf;
  margin-top: 5px;
  font-size: 11px;
  display: block;
}

.token-section {
  width: 100%;
  margin-bottom: 0;
}

.balance-header {
  color: #bfbfbf;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  font-size: 12px;
  display: flex;
}

.bnb-amount {
  font-weight: bold;
  color: #daa520 !important;
}

.usd-value, .output-usd, .coin-price span, .usd-sign {
  color: #4caf50 !important;
}

.token-label {
  color: #bfbfbf;
  align-items: center;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
}

.token-logo-left {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.input-wrapper {
  align-items: center;
  gap: 8px;
  display: flex;
}

.input-wrapper input {
  text-align: left;
  flex: 1;
  padding: 12px;
  font-size: 18px;
}

.small-max {
  min-width: 35px;
  width: auto !important;
  padding: 5px 9px !important;
  font-size: 9px !important;
}

#maxBtn {
  margin-top: 0;
}

.output-wrapper {
  flex-direction: column;
  display: flex;
  position: relative;
}

.output-input {
  background-color: #1e1e1e;
  border: 2px dashed #666;
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  padding: 12px;
  display: flex;
}

.output-input #toOutput {
  color: #f3ba2f;
  font-size: 18px;
}

.output-usd {
  color: #bfbfbf;
  font-size: 14px;
}

.output-usd .usd-sign {
  color: #4caf50 !important;
}

.coin-price {
  color: #bfbfbf;
  text-align: left;
  margin-top: 4px;
  font-size: 12px;
}

.arrow-container {
  background-color: #1e1e1e;
  border: 3px solid #000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin: 0;
  display: flex;
}

.non-clickable-arrow {
  color: #e8b637;
  cursor: default;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
}

.swap-btn {
  margin-top: 7px;
  color: #000 !important;
  background-color: #f3ba2f !important;
  font-size: 17px !important;
  font-weight: bold !important;
}

.swap-btn:disabled {
  background-color: #666 !important;
}

.swap-box {
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 11px;
  flex-direction: column;
  align-items: center;
  padding: 19px;
  display: flex;
}

.modal {
  z-index: 1000;
  background-color: #000c;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.modal-content {
  text-align: center;
  background-color: #1e1e1e;
  border-radius: 10px;
  width: 80%;
  max-width: 300px;
  padding: 20px;
}

.modal-content h2 {
  color: #f3ba2f;
  margin-bottom: 10px;
}

.modal-content p {
  color: #bfbfbf;
  margin-bottom: 15px;
}

.green-text {
  color: #4caf50;
  font-weight: bold;
}

#confirmBtn {
  color: #000;
  cursor: pointer;
  background-color: #f3ba2f;
  border: none;
  border-radius: 5px;
  width: 100%;
  padding: 10px 20px;
  font-weight: bold;
}

#confirmBtn:hover {
  background-color: #daa520;
}

.history-container {
  box-sizing: border-box;
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  max-height: 300px;
  margin-top: 20px;
  padding: 15px;
  overflow-y: auto;
}

.history-container h3 {
  color: #f3ba2f;
  z-index: 1;
  background-color: #1e1e1e;
  margin-bottom: 10px;
  padding: 5px 0;
  font-size: 16px;
  position: sticky;
  top: 0;
}

.history-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.history-container li {
  color: #bfbfbf;
  word-break: break-all;
  background-color: #2a2a2a;
  border-radius: 5px;
  margin-bottom: 5px;
  padding: 10px;
  font-size: 12px;
  position: relative;
}

.history-container li.pinned {
  position: relative;
}

.history-container li.pinned:before {
  content: "📌";
  color: #f3ba2f;
  font-size: 9px;
  position: absolute;
  top: 1px;
  right: 3px;
}

.history-container a {
  color: #f3ba2f;
  text-decoration: none;
}

.history-container a:hover {
  text-decoration: underline;
}

.green-dot {
  vertical-align: middle;
  background-color: #4caf50;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  display: inline-block;
}

@media (width <= 600px) {
  .navbar {
    padding: 5px;
  }

  .logo {
    width: 25px;
    height: 25px;
  }

  .connect-btn {
    padding: 8px 15px;
  }

  .banner {
    padding: 5px;
    font-size: 14px;
  }

  .swap-box {
    padding: 13px;
  }

  button {
    padding: 5px;
  }

  .modal-content {
    width: 90%;
  }

  .history-container {
    max-height: 250px;
    padding: 10px;
  }

  .history-container h3 {
    font-size: 14px;
  }

  .history-container li {
    padding: 8px;
    font-size: 11px;
  }

  .history-container li.pinned:before {
    font-size: 12px;
    top: 3px;
    right: 8px;
  }

  .input-wrapper {
    flex-direction: column;
    gap: 4px;
  }

  .small-max {
    align-self: flex-end;
    width: 45px !important;
  }

  .output-input {
    padding: 7px;
  }

  .coin-price {
    font-size: 9px;
  }
}
/*# sourceMappingURL=BINANCE.updated.3a01df49.css.map */
