/* theme-toggle.css : styles pour le bouton de changement de thème */

#theme-toggle {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  box-shadow: 0 2px 8px #23294622;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 10;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
#theme-toggle:hover {
  background: #f7c873;
  color: #232946;
  box-shadow: 0 4px 16px #f7c87399;
  transform: scale(1.08) rotate(-8deg);
}
#theme-icon {
  pointer-events: none;
}
