/* src/styles.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --primary: #007EB6;
  --primary-container: #D9F4FF;
  --primary-dark: #004E70;
  --secondary: #004E70;
  --success: #308144;
  --success-container: #DAF2DF;
  --on-success: #14361C;
  --warning: #E38A05;
  --warning-container: #FEF2E1;
  --on-warning: #6B3F00;
  --error: #D30001;
  --error-container: #FFAEAE;
  --on-error: #790001;
  --bg: #F2F5F7;
  --surface: #FFFFFF;
  --surface2: #F0F4F8;
  --border: #D9E2E8;
  --border2: #B0BEC5;
  --text: #1A2B33;
  --text2: #4A6272;
  --text3: #78909C;
  --text4: #9BAFBC;
  --risk-low: #308144;
  --risk-low-bg: #DAF2DF;
  --risk-med-lo: #C47C00;
  --risk-med-lo-bg: #FEF2E1;
  --risk-med-hi: #C05000;
  --risk-med-hi-bg: #FFEDE0;
  --risk-high: #BA1A1A;
  --risk-high-bg: #FFDAD6;
  --font: "Open Sans", sans-serif;
  --mono: "Source Code Pro", monospace;
  --r-xs: 4px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --sidebar-w: 196px;
  --header-h: 48px;
  --shadow-1: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-2: 0 2px 8px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.05);
}
html,
body {
  height: 100%;
  overflow: hidden;
  font-family: var(--font);
  font-size: 13px;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--border2);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 32px;
  padding: 0 14px;
  border-radius: var(--r-xs);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text2);
  transition:
    background 150ms ease,
    border-color 150ms ease,
    color 150ms ease;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  letter-spacing: 0.1px;
}
.btn:hover {
  background: var(--surface2);
  border-color: var(--border2);
  color: var(--text);
}
.btn.pri {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn.pri:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn.suc {
  background: var(--success);
  color: #fff;
  border-color: var(--success);
}
.btn.suc:hover {
  filter: brightness(0.92);
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.chip {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 9px;
  border-radius: var(--r-xs);
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid transparent;
  letter-spacing: 0.2px;
}
.s-ip {
  background: var(--warning-container);
  color: var(--on-warning);
  border-color: #F5C97A;
}
.s-ap {
  background: var(--success-container);
  color: var(--on-success);
  border-color: #7DC896;
}
.banner {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 14px;
  border-radius: var(--r-xs);
  font-size: 12px;
  line-height: 1.55;
  margin-bottom: 12px;
  border-left: 4px solid transparent;
}
.banner.info {
  background: var(--primary-container);
  border-color: var(--primary);
  color: var(--primary-dark);
}
.banner.warn {
  background: var(--warning-container);
  border-color: var(--warning);
  color: var(--on-warning);
}
.banner.success {
  background: var(--success-container);
  border-color: var(--success);
  color: var(--on-success);
}
.banner.error {
  background: var(--error-container);
  border-color: var(--error);
  color: var(--on-error);
}
.section-heading {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--text3);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.risk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-family: var(--mono);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.risk-badge.sm {
  min-width: 36px;
  height: 22px;
  font-size: 11px;
  border-radius: var(--r-xs);
}
.risk-badge.md {
  min-width: 48px;
  height: 32px;
  font-size: 15px;
  padding: 0 10px;
}
.risk-badge.lg {
  min-width: 64px;
  height: 44px;
  font-size: 20px;
  padding: 0 12px;
  border-radius: 8px;
}
.risk-badge.na {
  background: #F3F4F6 !important;
  border: 1px dashed #D1D5DB;
  color: #9CA3AF;
}
.risk-badge.low {
  background: var(--risk-low);
}
.risk-badge.med-lo {
  background: var(--risk-med-lo);
}
.risk-badge.med-hi {
  background: var(--risk-med-hi);
}
.risk-badge.high {
  background: var(--risk-high);
}
.tog {
  width: 34px;
  height: 20px;
  border-radius: 10px;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 150ms ease;
}
.tog.on {
  background: var(--primary);
}
.tog.off {
  background: var(--border2);
}
.tog::after {
  content: "";
  position: absolute;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left 150ms ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.tog.on::after {
  left: 17px;
}
.tog.off::after {
  left: 3px;
}
.opt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 4px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  transition: color 100ms ease;
  -webkit-user-select: none;
  user-select: none;
}
.opt:hover {
  color: var(--primary);
}
.opt.sel {
  font-weight: 500;
}
.opt-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 150ms ease;
  background: #fff;
  margin-top: 2px;
}
.opt-dot.on {
  border-color: var(--primary);
}
.opt-dot.on::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
}
.progress-track {
  height: 4px;
  background: var(--surface2);
  border-radius: 2px;
  overflow: hidden;
}
.progress-track .progress-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.4s ease;
}
.divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: 0;
}
.fake-inp {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  height: 36px;
  border-radius: var(--r-xs);
  border: 1px solid var(--border);
  background: var(--surface2);
  font-size: 13px;
  color: var(--text2);
}
.portal {
  display: grid;
  grid-template-rows: var(--header-h) 1fr;
  height: 100vh;
  overflow: hidden;
}
.portal-body {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  overflow: hidden;
}
.content-area {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}
.main-pane {
  flex: 1;
  overflow-y: auto;
  background: var(--bg);
}

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