/**
 * Simple Theme Toggle - Minimal CSS
 * No animations, no GPU-intensive effects
 */

.simple-theme-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.simple-theme-toggle:hover {
  transform: scale(1.1);
}

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

.simple-theme-toggle .theme-icon {
  font-size: 24px;
  user-select: none;
}

/* Light mode button style */
.light-theme .simple-theme-toggle,
body.light-mode .simple-theme-toggle {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.1);
}
