/* Overview admin page — fixed nav + loading line */
body.overview-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.overview-page .site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(6, 16, 24, 0.42);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border-bottom: 1px solid rgba(104, 66, 47, 0.18);
}

#overview-loading {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 2rem 1rem;
}
