/* Page-level styles for index.html. Kept in an external file (not an inline
   <style> block) so the CSP can use style-src 'self' without 'unsafe-inline'.
   Lit component styles use adopted stylesheets and are not governed by CSP. */
:root {
  color-scheme: light;
}
body {
  margin: 0;
  min-height: 100vh;
  background-color: #fafafa;
  color: #333;
  font-family: Roboto, "Helvetica Neue", system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
  box-sizing: border-box;
}
.logo {
  width: 100%;
  max-width: 360px;
  height: auto;
}
