/* public/css/theme.css
   Tema değiştirici — tek ikon (cycle): tıklayınca auto → açık → koyu.
   Renkler sayfanın :root variable'larını kullanır; tema değişince adapte. */

.theme-cycle {
  background: transparent;
  border: 1px solid var(--border2, #30363d);
  color: var(--muted, #7d8590);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 14px;
  line-height: 1;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}

.theme-cycle:hover {
  color: var(--accent, #00d4ff);
  border-color: var(--accent, #00d4ff);
}

.theme-cycle:active {
  transform: scale(0.95);
}

.theme-cycle .theme-ico {
  display: inline-block;
  transition: transform 0.25s;
}

.theme-cycle:hover .theme-ico {
  transform: rotate(15deg);
}

/* Bağımsız konumlanma (login/setup/index için sağ-üst köşe) */
.theme-floating {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100;
}
