/* Global styles shared across all pages */

* {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  color: #222;
  line-height: 1.6;
  scrollbar-gutter: stable;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer {
  margin-top: auto;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  color: #999;
}

footer p {
  text-align: center;
  margin: 15px 0;
  color: #999;
  font-size: 12px;
}

footer a {
  color: #999;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #111;
    color: #ddd;
  }

  footer {
    color: #666;
  }
}
