/* static/css/base.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { 
  margin: 0; 
  padding: 0; 
  height: 100%;
  overflow-y: auto; /* Enable scrolling when content exceeds viewport */
}
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh; /* Modern browsers - accounts for mobile UI */
  /* Body will grow naturally when content exceeds viewport height */
}
a { color: inherit; }