/* Make the about page scrollable inside the app layout */
#app-layout:has(.about-page) {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

#app-layout:has(.about-page) #pages-wrapper {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.about-page main {
  padding-top: 24px;
}

:root {
  --fg: #222;
  --muted: #666;
}

body {
  margin: 0;
  color: var(--fg);
}

header,
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 8px;
}

header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #eee;
}

h1 {
  font-size: 1.5rem;
  margin: 0;
}

.btn {
  appearance: none;
  border: 1px solid #ccc;
  background: #f7f7f7;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.btn:hover {
  background: #eee;
}

.muted {
  color: var(--muted);
}

.spacer {
  flex: 1 1 auto;
}

main p {
  margin: 0 0 12px 0;
}

ul {
  margin: 8px 0 16px 20px;
}
