.homePage {
  font-family: "Lato", Avenir, Verdana, Nunito, sans-serif;
}

.settingPage {
  padding: 15px;
}

.pageTitle {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.faInfoCircle {
  color: #2c4f58;
  font-size: 16px;
}

.mT10 {
  margin-top: 10px !important;
}

.mL10 {
  margin-left: 10px !important;
}

.mB10 {
  margin-bottom: 10px !important;
}

.mB0 {
  margin-bottom: 0 !important;
}

.mT20 {
  margin-top: 20px !important;
}

.floatLeft {
  float: left;
}

.floatRight {
  float: right;
}

.oneClickInfoContent {
  border: 2px solid #2c4f58;
  background-color: #fff;
  color: #000;
  padding: 15px;
  margin-top: 10px;
  border-radius: 4px;
}

.oneClickInfoContent ul {
  margin: 10px 0;
  padding-left: 20px;
}

.oneClickInfoContent li {
  /* margin-bottom: 5px; */
}

.oneClick {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.oneClick p {
  margin: 0;
  font-size: 14px;
  color: #000;
}

/* Switch Toggle Styles */
.switchToggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.switchToggle input[type="checkbox"] {
  height: 0;
  width: 0;
  visibility: hidden;
  position: absolute;
}

.switchToggle label {
  cursor: pointer;
  text-indent: -9999px;
  width: 60px;
  height: 24px;
  background: #ccc;
  display: block;
  border-radius: 30px;
  position: relative;
}

.switchToggle label:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 2px;
  width: 21px;
  height: 21px;
  background: #fff;
  border-radius: 20px;
  transition: 0.3s;
  border: 1px solid #d9d9d9;
}

.switchToggle input:checked + label {
  background: #0f2327;
}

.switchToggle input:checked + label:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}

.switchToggle input + label:before {
  content: "OFF";
  position: absolute;
  /* top: 3px; */
  right: 3px;
  width: 26px;
  height: 26px;
  border-radius: 90px;
  transition: 0.3s;
  text-indent: 0;
  font-size: 8px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.switchToggle input:checked + label:before {
  content: "ON";
  left: 3px;
  right: auto;
  color: #fff;
}

/* Stake Buttons */
.stakeButtons {
  width: 100%;
  clear: both;
}

.stakeButtons::after {
  content: "";
  display: table;
  clear: both;
}

.stakeGroup {
  width: 100%;
  display: flex;
  gap: 2%;
  margin-bottom: 10px;
}

.stake {
  padding: 17px 0;
  border: 0;
  -webkit-box-shadow: inset 0 0 0 1px #008000;
  box-shadow: inset 0 0 0 1px #008000;
  text-align: center;
  color: #008000;
  border-radius: 2px;
  margin: 0;
  height: 48px;
  width: 32%;
  float: left;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.stake.readonly {
  cursor: default;
}

.stake.active {
  padding: 7px 0;
  font-weight: 700;
  color: #008000;
  -webkit-box-shadow: inset 0 0 0 2px #008000;
  box-shadow: inset 0 0 0 2px #008000;
}

.stake p.active {
  margin: 0;
  font-size: 14px;
  color: #008000 !important;
}

.stake.active span {
  font-size: 10px;
  margin-top: 2px;
  color: #008000;
}

/* Button Styles */
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  cursor: pointer;
}

.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btnLg {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  width: 50%;
  border-radius: 2px;
}

.btnPrimary {
  background-color: #183f45;
  color: #ffffff;
  border-color: #183f45;
}

.btnPrimary:hover {
  background-color: #0f2a2f;
  border-color: #0f2a2f;
  color: #ffffff;
}

.btnDisabled {
  background-color: #e9ecef;
  color: #6c757d;
  border-color: #e9ecef;
  cursor: not-allowed;
  opacity: 0.65;
}

.btnDisabled:hover {
  color: #6c757d;
  text-decoration: none;
}


.editInput {
    width: 80%;
    padding: 5px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
}
