.all-staff{
  height: 65vh;
  overflow-y: scroll;
}

.all-staff-commissions{
  height: 50vh;
  overflow-y: auto;
}


.toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.toggle-label {
  font-weight: bold;
  font-size: 0.8rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

#customToggle:checked~.on-label {
  color: black;
}

#customToggle:not(:checked)~.off-label {
  color: black;
}

/* Toggle base */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* Slider Style */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--secondary);
  transition: 0.4s;
  border-radius: 34px;
}

/* Circle (Knob) */
.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 5px;
  background-color: white;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
  transition: 0.4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: var(--primary);
}

input:checked+.slider:before {
  transform: translateX(26px);
}