/* Site-specific styles for Identity Server pages */
/* Most styling handled by Tailwind CSS */

/* Theme toggle icon visibility */
.dark-hidden {
  display: block;
}

.light-hidden {
  display: none;
}

[data-theme="dark"] .dark-hidden {
  display: none;
}

[data-theme="dark"] .light-hidden {
  display: block;
}

/* System preference dark mode */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .dark-hidden {
    display: none;
  }

  :root:not([data-theme="light"]) .light-hidden {
    display: block;
  }
}

/* Logout page iframe (hidden for signout) */
.logout-iframe {
  display: none;
  width: 0;
  height: 0;
}

/* Responsive - hide right panel on mobile */
@media (max-width: 1023px) {
  .login-right-panel {
    display: none;
  }
}
