* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/Roboto-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/Roboto-Italic-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-style: italic;
  font-display: swap;
}

html,
body {
  height: 100%;
}

html {
  font-size: 100%;
  line-height: 1.5;
  font-family: Roboto, Arial, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  background-color: #0f0f0f;
  color: #a9a9a9;
  
}

body.login-page .core {
  justify-content: center;
}

.core {
  display: flex;
  flex-direction: column;
  /* Use modern viewport units for stable full-height layouts */
  min-height: 100vh;  /* fallback */
  min-height: 100dvh; /* modern browsers */
  padding: 0 1rem;
}

.container {
  margin: 0 auto;
  max-width: 75rem;
  width: 100%;
}

.logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 2.5rem;
}

.logo img {
  max-width: 100%;
  height: auto;
}

/* Make all images responsive by default */
img {
  max-width: 100%;
  height: auto;
}

.footer {
  padding: 2rem 0 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: #1c1c1c;
}

/* Wrapper for inner page titles (and small header bits) */
.page-header {
  padding: 2rem 0 0 1rem;
  text-align: left;
  color: #e7e7e7;
  margin: 0 0 1rem;
}

/* Shared page section wrapper (non-admin pages) */
.page-section {
  width: 100%;
}

/* Standardized page titles (non-admin) */
.page-header h1 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.25;
  color: #eaf2ff;
}
@media (min-width: 48em) {
  .page-header h1 { font-size: 1.75rem; }
}
.page-subtitle {
  margin: 0.375rem 0 0;
  font-size: 1rem;
  color: #9fb2d6;
}

/* Visible focus outline for keyboard users */
a:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 2px;
}

/* Responsive gutters for core container */
@media (min-width: 48em) {
  .core {
    padding: 0 1.5rem;
  }
}

@media (min-width: 75em) {
  .core {
    padding: 0 2.5rem;
  }
}
