/* nightshift.css */

#nightshift-toggle {
  position: fixed;
  top: 24px;
  right: 36px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 1000;
  pointer-events: all !important; /* Override button defaults */
}

#nightshift-toggle:hover {
  opacity: 0.7;
}

#nightshift-toggle img {
  width: 100%;
  height: 100%;
  display: block;
}

/* NightShift режим */
html.nightshift-on::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 197, 80, 0.1);
  pointer-events: none;
  z-index: 9999;
  transition: opacity 3s ease;
  mix-blend-mode: multiply;
}
