.oneClickSetting {
  position: fixed;
  width: 100%;
  background-color: #e84c4d;
  padding: 4px 12px;
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 999;
  left: 0;
  right: 0;
}

/* Mobile responsive - sticky positioning like header */
@media (max-width: 768px) {
  .oneClickSetting {
    position: sticky;
    top: 0;
    z-index: 9;
  }
}

/* Desktop - fixed positioning below header */
@media (min-width: 769px) {
  .oneClickSetting {
    position: fixed;
  }
  
  .oneClickSetting.withDrawerLeft {
    left: 65%;
    width: calc(100% - 65%);
  }
  
  .oneClickSetting.withDrawerRight {
    right: 69%;
    width: calc(100% - 69%);
  }
  
  .oneClickSetting.withDrawerBoth {
    left: 65%;
    right: 69%;
    width: calc(100% - 65% - 69%);
  }
}

.floatLeft {
  float: left;
}

.mT5 {
  margin-top: 5px;
}

.mT10 {
  margin-top: 0px;
}

.textCenter {
  text-align: center;
  flex: 1;
}

.textWhite {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}

.settingsLink {
  color: #fff;
  text-decoration: none;
}

.settingsLink:hover {
  color: #fff;
  text-decoration: none;
}

/* Switch Toggle Styles */
.switchToggle {
  position: relative;
  display: inline-block;
  width: 55px;
  max-width: 70px;
  height: 25px;
}

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

.switchToggle label {
  cursor: pointer;
  text-indent: -9999px;
  width: 55px;
  max-width: 70px;
  height: 25px;
  background: #fff;
  display: block;
  border-radius: 20px;
  position: relative;
  border: 1px solid #e6e6e6;
}

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

.switchToggle input:checked + label {
  background: #09262b;
}

.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,
.switchToggle input:checked + input + label:before {
  content: "ON";
  left: 6px;
  right: auto;
  top: -1px;
  color: #fff;
  font-size: 8px;
}

