.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid var(--line, rgba(255, 255, 255, 0.2));
  background: rgba(15, 20, 32, 0.7);
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  box-shadow: none;
  cursor: pointer;
}

.theme-toggle:hover {
  filter: brightness(1.05);
}

.theme-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f0b43a;
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: inset -3px -3px 0 rgba(0, 0, 0, 0.18);
}

body[data-theme='light'] .theme-toggle {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.15);
}

body[data-theme='light'] .theme-icon {
  background: #f59e0b;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: inset -3px -3px 0 rgba(0, 0, 0, 0.12);
}
