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

/* src/styles.scss */
:root {
  --thermo-red: #dc143c;
  --thermo-dark-red: #b91c2c;
  --thermo-light-red: #ef4444;
  --thermo-gray: #6b7280;
  --thermo-dark-gray: #374151;
  --thermo-light-gray: #f9fafb;
  --thermo-white: #ffffff;
  --thermo-black: #111827;
  --thermo-green: #10b981;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 14px;
  color: var(--thermo-black);
  background: var(--thermo-light-gray);
  min-height: 100vh;
}
.app-main {
  min-height: calc(100vh - 64px);
}
a {
  color: var(--thermo-red);
  text-decoration: none;
}
button {
  font-family: inherit;
}

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