/* design-system/css/base.css */
/* Shared reset, typography, and page shell for all Loadshift mockups. */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #f7f8f9;
  color: #151515;
  min-height: 100vh;
  overflow-x: auto;
}

.page-shell {
  position: relative;
  width: 100%;
  min-width: 1024px;
  min-height: 100vh;
}

a { color: inherit; }

img { display: block; }

@media (max-width: 720px) {
  .page-shell { min-width: 0; }
}
