@charset "UTF-8";
.theme-selector {
  display: none;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  margin-top: auto;
  background: rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.theme-selector .theme-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: var(--secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}
.theme-selector .theme-button:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.theme-selector .theme-button:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}
.theme-selector .theme-button.active {
  box-shadow: 0 0 0 3px var(--secondary) inset;
}
.theme-selector .theme-button i {
  display: block;
}
.theme-selector .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body[data-theme="Dark Mode"] .theme-selector {
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
body[data-theme="Dark Mode"] .theme-selector .theme-button {
  background: var(--primary);
  color: var(--secondary);
}

body[data-theme="Light Mode"] .theme-selector .theme-button {
  background: var(--primary);
  color: var(--secondary);
}

body[data-theme=Matin] .theme-selector .theme-button,
body[data-theme=Journée] .theme-selector .theme-button,
body[data-theme=Soirée] .theme-selector .theme-button,
body[data-theme=Nuit] .theme-selector .theme-button {
  background: var(--primary);
  color: var(--secondary);
}

body[data-theme=dynamic-fluid] .theme-selector .theme-button {
  background: var(--primary);
  color: var(--secondary);
}