.theme-btn {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(200, 180, 106, 0.38);
  background: transparent;
  color: #d4bf76;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.theme-btn:hover,
.theme-btn:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}
.theme-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.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;
}
html[data-theme="dark"] body {
  background: radial-gradient(circle at top left, rgba(255,255,255,0.06), transparent 22%), linear-gradient(180deg, #000000 0%, #050505 100%);
  color: #f2f2f2;
}
html[data-theme="dark"] .site-header,
html[data-theme="dark"] .admin-header {
  background: #000000;
}
html[data-theme="dark"] .panel,
html[data-theme="dark"] .card,
html[data-theme="dark"] .stat,
html[data-theme="dark"] table,
html[data-theme="dark"] input,
html[data-theme="dark"] select {
  background: #0a0a0a;
  color: #f2f2f2;
  border-color: rgba(255,255,255,0.2);
}
.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  display: grid;
  gap: 0.8rem;
  width: min(360px, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #d6dfef;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(20, 30, 60, 0.16);
}
.cookie-banner-text {
  margin: 0;
  font-size: 0.92rem;
  color: #243152;
}
.cookie-banner .btn {
  width: 100%;
  min-height: 44px;
  padding-inline: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
}
.btn-primary {
  background: linear-gradient(180deg, #2f5cc4 0%, #1d3b90 100%);
  color: #fff;
}
html[data-theme="dark"] .cookie-banner {
  background: #0c111a;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}
html[data-theme="dark"] .cookie-banner-text {
  color: #d5def2;
}
