@import "https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap";
@import "https://fonts.googleapis.com/icon?family=Material+Icons";

/* src/styles.scss */
:root {
  --color-bg: #f5f5f5;
  --color-bg-card: #ffffff;
  --color-bg-card2: #f0f0f0;
  --color-accent: #C9A84C;
  --color-accent-dark: #a8873a;
  --color-primary: #C9A84C;
  --color-primary-dark: #a8873a;
  --color-text: #1a1a1a;
  --color-text-muted: #888;
  --color-border: #e0e0e0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overscroll-behavior-y: none;
}
.page-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 20px 16px;
}
a {
  color: inherit;
  text-decoration: none;
}
.text-muted {
  color: var(--color-text-muted);
}
.text-center {
  text-align: center;
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
