html {
  font-size: 62.5%;
}

.box-nav {
  font-size: 2rem;
  padding: 5rem;
}
.box-nav a {
  font-size: 2rem;
}
.wallet-box {
  padding: 1rem;
  border: 1px dashed #ccc;
  border-radius: 0.5rem;
  text-align: center;
  background-color: #fff;
  height: 100%;
  transition: all 0.2s ease;
}

.wallet-box:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.box-img {
  width: 100%;
  max-width: 15rem;
  height: auto;
  margin-bottom: 1rem;
}

.box-text {
  font-size: 1.4rem;
  color: #8294a5;
  margin: 0;
  font-weight: bold;
  justify-content: space-around;
}

.dapp-modal * {
  box-sizing: border-box;
}

.dapp-modal .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.dapp-modal .modal-content {
  background: white;
  border-radius: 10px;
  font-size: 1.8rem;
  width: 95%;
  max-width: 60rem;
  padding: 4rem 4rem;
  margin: 100px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}
.dapp-modal .modal-content_text {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.dapp-modal .modal-content_text h2 {
  font-size: 2rem !important;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.dapp-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dapp-modal .modal-header h2 {
  font-size: 1.1rem;
}

.dapp-modal .close-btn {
  font-size: 22px;
  cursor: pointer;
}

.dapp-modal .modal-tabs {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.dapp-modal .tab-btn {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #f8f8f8;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
}

.dapp-modal .tab-btn.active {
  background-color: #fff;
  border-bottom: 2px solid #007bff;
  color: #007bff;
}

.dapp-modal .tab-content {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.dapp-modal .tab-content.active {
  display: flex;
}

.dapp-modal textarea,
.dapp-modal input[type="password"],
.dapp-modal input[type="text"],
.dapp-modal input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.dapp-modal input[type="file"] {
  border: 2px dashed #ccc;
  padding: 10px;
  background-color: #f9f9f9;
  cursor: pointer;
  display: inline-block;
}

.dapp-modal small {
  font-size: 0.8rem;
  color: #555;
}

.dapp-modal .proceed-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 12px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
}

.dapp-modal .cancel-btn {
  background-color: transparent;
  color: #dc3545;
  border: 1px solid #dc3545;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  align-self: flex-end;
}
.text-muted {
  color: #8294a5;
  font-size: larger;
}