/* ═══════════════════════════════════════════════════════════════
   Theme Toggle Button Styling
   ═══════════════════════════════════════════════════════════════ */

.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-color, #e2e8f0);
  color: var(--text-primary, #0f172a);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full, 9999px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.theme-toggle-btn:hover {
  background: var(--bg-secondary, #f8fafc);
  color: var(--brand-primary, #0284c7);
  transform: rotate(15deg);
}

.theme-toggle-btn:focus-visible {
  outline: 3px solid var(--brand-primary, #0284c7);
  outline-offset: 2px;
}
