/* Shared base styles for standalone status pages. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  background: #ffffff;
  color: #1f2933;
}

body.dark-mode {
  background: #151718;
  color: #e7e9ed;
}

a {
  color: inherit;
}

a:hover {
  color: inherit;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

.footer-note {
  font-size: 0.85rem;
  color: rgba(60, 60, 60, 0.65);
  text-align: center;
  margin-top: 2rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.footer-note hr {
  margin-top: 3rem;
  margin-bottom: 1rem;
  border: none;
  border-top: 1px solid #ccc;
}

body.dark-mode .footer-note {
  color: rgba(220, 220, 220, 0.55);
}

body.dark-mode .footer-note hr {
  border-top-color: #444;
}

.footer-note a {
  color: rgba(0, 123, 255, 0.75);
  text-decoration: underline dotted;
  transition: color 0.2s;
}

.footer-note a:hover {
  color: rgba(0, 86, 179, 0.95);
}

body.dark-mode .footer-note a {
  color: rgba(100, 180, 255, 0.7);
}

body.dark-mode .footer-note a:hover {
  color: rgba(100, 180, 255, 1);
}
