.zone-toggle-container {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 1rem; 
  cursor: pointer;
}




/* texte */
.toggle-label {
  font-size: 0.8rem;
  color: var(--md-default-fg-color);
  user-select: none;
  text-decoration: none;
  transition: color 0.3s;
}

/* switch */
.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}

/* fond du switch */
.slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 20px;
}

/* bille */
.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

/* --- ÉTAT ACTIVE (site secondaire) --- */
.zone-toggle-container.active .slider {
  background-color: MediumSeaGreen;
}

.zone-toggle-container.active .slider:before {
  transform: translateX(16px);
}

/* texte en vert en mode actif */
.zone-toggle-container.active .toggle-label {
  color: MediumSeaGreen;
}

