/* ===== Apple-style Theme Toggle Button ===== */

#toggle-theme {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

#toggle-theme .toggle-track {
  width: 52px;
  height: 32px;
  background: #e5e5ea;
  border-radius: 999px;
  position: relative;
  transition: background-color 0.3s ease;
}

#toggle-theme .toggle-thumb {
  width: 28px;
  height: 28px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  display: flex;
  align-items: center;
  justify-content: center;


  transition:
    transform 0.3s cubic-bezier(.4,0,.2,1),
    background-color 0.3s ease;
}

#toggle-theme .icon {
  position: absolute;
  font-size: 14px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#toggle-theme .moon {
  opacity: 0;
  transform: scale(0.7);
}

#toggle-theme {
    background: none !important;
    color: inherit !important;
    border: none !important;
}

#toggle-theme *,
#toggle-theme::before,
#toggle-theme::after {
    border: none !important;
}