/* === Theme Toggle === */

.theme-toggle {
  width: 44px;
  height: 24px;
  border-radius: 100px;
  background: var(--bg-section);
  border: 1.5px solid var(--border-subtle);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 3px;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--blue-azure);
}

.theme-toggle .toggle-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gradient-main);
  transition: all 0.4s cubic-bezier(0.68, -0.15, 0.265, 1.35);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle .toggle-icon {
  font-size: 9px;
  line-height: 1;
}

[data-theme="light"] .theme-toggle .toggle-thumb {
  transform: translateX(20px);
}

[data-theme="light"] .theme-toggle {
  background: rgba(0, 122, 204, 0.08);
}
