@import "https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700;800&display=swap";

/* src/styles.css */
:root {
  --color-background: #FFFFFF;
  --color-primary: #FB923C;
  --color-secondary: #2DD4BF;
  --color-text: #1F2937;
  --color-accent: #FEF3C7;
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-400: #9CA3AF;
  --color-gray-500: #6B7280;
  --color-gray-600: #4B5563;
  --color-gray-700: #374151;
  --color-gray-800: #1F2937;
  --color-gray-900: #111827;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    "Work Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-text);
  background-color: var(--color-background);
}
* {
  font-family:
    "Work Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
.form-select:focus {
  box-shadow: none !important;
}
input,
button,
textarea,
select {
  font-family:
    "Work Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
.swal2-container {
  z-index: 20000 !important;
}
.swal2-popup {
  z-index: 20001 !important;
}
html.panel-open,
.panel-open {
  overflow: hidden !important;
  overscroll-behavior: none;
}
html.modal-open,
body.modal-open {
  overflow: hidden !important;
  overscroll-behavior: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:
    "Work Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 700;
}
code {
  font-family:
    source-code-pro,
    Menlo,
    Monaco,
    Consolas,
    "Courier New",
    monospace;
}

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