/* src/styles.scss */
:root {
  --color-bg-surface: #f8f8f8;
  --color-bg-elevated: #ffffff;
  --color-bg-secondary: #ededed;
  --color-bg-danger: #fee0dc;
  --color-accent-primary: #1966b2;
  --color-accent-primary-subtle: rgba(25, 102, 178, 0.12);
  --color-border-default: #e0e0e0;
  --color-border-muted: #9b9b9b;
  --color-text-primary: #101010;
  --color-text-secondary: #585858;
  --color-text-muted: #9b9b9b;
  --color-text-accent: #1966b2;
  --color-text-danger: #e52913;
  --color-text-on-accent: #ffffff;
  --color-brand-red: #e52913;
  --font-family:
    "Inter",
    system-ui,
    sans-serif;
  --font-size-caption: 11px;
  --font-size-label: 12px;
  --font-size-body: 14px;
  --font-size-heading: 16px;
  --padding-left-header-left: 210px;
  --margin-top-active-workers: 120px;
  --margin-top-elevated: 66px;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.12);
  --shadow-overlay: 0 4px 16px rgba(0, 0, 0, 0.16);
  --transition-fast: 120ms ease;
  --transition-base: 200ms ease;
  --nav-height: 48px;
  --bottom-bar-height: 120px;
  --bottom-bar-workers-w: 120px;
  --bottom-bar-workers-h: 120px;
  --bottom-bar-sites-w: 120px;
  --bottom-bar-add-w: 45px;
  --worker-row-height: 28px;
  --site-column-min-width: 198px;
  --icon-button-size-lg: 32px;
  --icon-button-size-sm: 24px;
  --icon-border-10: 10px;
  --icon-margin-20: 20px;
  --site-column-table-width: 202px;
  --site-column-table-height: 32px;
  --touch-target: 44px;
  --touch-target-comfortable: 48px;
  --touch-target-min: 24px;
  --mobile-card-max-width: 640px;
}
[data-theme=dark] {
  --color-bg-surface: #2c2c2c;
  --color-bg-elevated: #3a3a3a;
  --color-bg-secondary: #2e2e2e;
  --color-bg-danger: #3d1a16;
  --color-accent-primary: #4d94db;
  --color-accent-primary-subtle: rgba(77, 148, 219, 0.16);
  --color-border-default: #444444;
  --color-border-muted: #5e5e5e;
  --color-text-primary: #f0f0f0;
  --color-text-secondary: #b0b0b0;
  --color-text-muted: #6e6e6e;
  --color-text-accent: #4d94db;
  --color-text-danger: #ff6b57;
  --color-text-on-accent: #101010;
  --color-brand-red: #ff5b45;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-overlay: 0 4px 16px rgba(0, 0, 0, 0.6);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  color: var(--color-text-primary);
  background-color: var(--color-bg-surface);
  background-size: 20px 20px;
  -webkit-font-smoothing: antialiased;
}
body::after {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-brand-red);
  z-index: 100;
  pointer-events: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
input {
  font-family: inherit;
}

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