.toggle-wrapper-vertical {
  display: flex;
  flex-direction: row;
  align-items: flex-start; /* or center if you want the switch centered below */
  gap: 2px; /* space between label and switch */
  padding-left: 4px;
}

.toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: #F5F3ED;
  font-family: Poppins;
  padding-right: 3px;
  margin-top: 8px;
}

/* The switch - the box around the slider */
.switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 78px;
  height: 30px;
  top:3px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 10px;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  border-radius: 20px;
  left: 6px;
  bottom: 0.2em;
  background-color: white;
  transition: 0.4s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.switch input:checked + .slider {
  background-color: #F5F3ED;
}

.switch input:focus + .slider {
  box-shadow: 0 0 1px #4cc9f0;
}

.switch input:checked + .slider:before {
  transform: translateX(46px);
  background-color: #4b6a5a;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Add some cool effects */
.slider:after {
  content: "HIDE";
  color: #303030;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  transition: opacity 0.4s;
  opacity: 1;
}

.switch input:checked + .slider:after {
  content: "SHOW";
  left: 4px;
  opacity: 1;
  right: auto;
font-size: 14px;
}

