/* src/styles.css */
:root {
  --bg: #f4f5f7;
  --surface: #ffffff;
  --line: #e5e8ec;
  --line-soft: #eef0f3;
  --ink: #14181d;
  --muted: #6a7280;
  --faint: #9ba2ac;
  --accent: #ff481f;
  --accent-ink: #d63710;
  --accent-wash: #ffede7;
  --green: #159a46;
  --green-wash: #e6f5ec;
  --amber: #de8a08;
  --amber-wash: #fbf0da;
  --red: #da2c2c;
  --red-wash: #fbe8e8;
  --violet: #7a3ceb;
  --violet-wash: #f0e9fc;
  --blue: #0e86d0;
  --blue-wash: #e4f2fb;
  --shadow: 0 1px 2px rgba(20, 24, 29, 0.04), 0 4px 16px rgba(20, 24, 29, 0.05);
  --font-display:
    "Barlow Condensed",
    system-ui,
    sans-serif;
  --font-semi:
    "Barlow Semi Condensed",
    system-ui,
    sans-serif;
  --font-ui:
    "Inter",
    system-ui,
    sans-serif;
}
:root {
  --surface-2: #fafbfc;
  --line-2: var(--line-soft);
  --text: var(--ink);
  --text-2: var(--muted);
  --brand-color: var(--accent);
  --accent-hover: var(--accent-ink);
  --accent-soft: var(--accent-wash);
  --ok: var(--green);
  --ok-soft: var(--green-wash);
  --warn: var(--amber);
  --warn-soft: var(--amber-wash);
  --info: var(--blue);
  --info-soft: var(--blue-wash);
  --danger: var(--red);
  --danger-soft: var(--red-wash);
  --rc: 16px;
  --rk: 9px;
  --rp: 8px;
  --shadow-lg: 0 12px 40px rgba(20, 24, 29, 0.13);
  --font-h: var(--font-display);
  --font-b: var(--font-ui);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  font-family: var(--font-ui);
  color: var(--ink);
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}
.tnum {
  font-variant-numeric: tabular-nums;
}
::selection {
  background: var(--accent-wash);
}
button {
  font-family: var(--font-ui);
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card--sm {
  border-radius: 14px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 26px;
  padding: 0 11px;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.chip--neutral {
  background: #eef2f7;
  color: #4b5563;
}
.chip--done {
  background: var(--line-soft);
  color: var(--muted);
}
.chip--green {
  background: var(--green-wash);
  color: var(--green);
  font-weight: 700;
}
.chip--amber {
  background: var(--amber-wash);
  color: var(--amber);
  font-weight: 700;
}
.chip--violet {
  background: var(--violet-wash);
  color: var(--violet);
  font-weight: 700;
}
.chip--red {
  background: var(--red-wash);
  color: var(--red);
  font-weight: 700;
}
.chip--blue {
  background: var(--blue-wash);
  color: var(--blue);
  font-weight: 700;
}
.chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.tag {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 8px;
}
.tag--amber {
  color: var(--amber);
  background: var(--amber-wash);
}
.tag--red {
  color: var(--red);
  background: var(--red-wash);
}
.tag--green {
  color: var(--green);
  background: var(--green-wash);
}
.tag--violet {
  color: var(--violet);
  background: var(--violet-wash);
}
.tag--muted {
  color: var(--muted);
  background: var(--line-soft);
}
.avatar {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.meter {
  height: 6px;
  border-radius: 3px;
  background: var(--line-soft);
  overflow: hidden;
}
.meter > span {
  display: block;
  height: 100%;
  background: var(--accent);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 9px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  height: 38px;
  padding: 0 15px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
}
.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover {
  background: var(--accent-ink);
}
.btn--ink {
  background: var(--ink);
  color: #fff;
}
.btn--green {
  background: var(--green);
  color: #fff;
}
.btn--outline {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}
.btn--outline:hover {
  background: var(--bg);
}
.btn--link {
  background: transparent;
  color: var(--accent-ink);
  padding: 0;
  height: auto;
}
.btn--dashed {
  border: 1px dashed var(--line);
  background: transparent;
  color: var(--muted);
}
.skeleton {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line-soft);
}
.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.65),
      transparent);
  animation: skeleton-shimmer 1.4s infinite;
}
.skeleton--circulo {
  border-radius: 50%;
}
@keyframes skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .skeleton::after {
    animation: none;
  }
}
.rail-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-ink);
}
.btn-outline {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--bg);
}
.btn-sm {
  height: 34px;
  padding: 0 13px;
  font-size: 12.5px;
}
.btn-xs {
  height: 30px;
  padding: 0 11px;
  font-size: 12px;
  border-radius: var(--rp);
}
.btn-dashed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 38px;
  padding: 0 15px;
  border: 1px dashed var(--line);
  border-radius: var(--rk);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
.btn-dashed:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.icon-btn-32 {
  width: 32px;
  height: 32px;
  border-radius: var(--rp);
}
.topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.cur {
  color: var(--muted);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: var(--rp);
  white-space: nowrap;
}
.pill.ok {
  color: var(--green);
  background: var(--green-wash);
  font-weight: 700;
}
.pill.info {
  color: var(--blue);
  background: var(--blue-wash);
  font-weight: 700;
}
.pill.warn {
  color: var(--amber);
  background: var(--amber-wash);
  font-weight: 700;
}
.pill.accent {
  color: var(--accent);
  background: var(--accent-wash);
  font-weight: 700;
}
.pill.neutral {
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.crumbs {
  display: none;
}
.title-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
  color: var(--ink);
}
.seg {
  display: flex;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--rk);
  padding: 3px;
}
.seg button {
  flex: 1;
  height: 28px;
  padding: 0 11px;
  border: 0;
  border-radius: var(--rp);
  background: transparent;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
}
.seg button.on {
  background: var(--surface);
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--ink);
}
.seg.mini {
  padding: 2px;
}
.seg.mini button {
  flex: none;
  height: 26px;
  font-size: 11.5px;
}
.input {
  height: 36px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--rk);
  padding: 0 11px;
  font-family: var(--font-ui);
  font-size: 13px;
  background: var(--surface-2);
  color: var(--ink);
  outline: none;
}
.input:focus {
  border-color: var(--accent);
  background: var(--surface);
}
.select-wrap {
  position: relative;
}
.select-wrap select {
  width: 100%;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--rk);
  padding: 0 32px 0 11px;
  font-family: var(--font-ui);
  font-size: 13px;
  background: var(--surface-2);
  color: var(--ink);
  outline: none;
  appearance: none;
  cursor: pointer;
}
.select-wrap select:focus {
  border-color: var(--accent);
  background: var(--surface);
}
.select-wrap > app-icon {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--faint);
}
.search-box {
  position: relative;
}
.search-box > app-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--faint);
  pointer-events: none;
}
.search-box input {
  width: 100%;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--rk);
  background: var(--surface-2);
  padding: 0 12px 0 34px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--ink);
  outline: none;
}
.search-box input:focus {
  border-color: var(--accent);
  background: var(--surface);
}
.grow {
  flex: 1;
  min-width: 0;
}
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--rk);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  flex: none;
  padding: 0;
}
.icon-btn:hover {
  background: var(--bg);
  color: var(--ink);
}
.icon-btn-30 {
  width: 30px;
  height: 30px;
  border-radius: var(--rp);
}
.ghost-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: var(--rp);
  border: 0;
  background: transparent;
  color: var(--faint);
  cursor: pointer;
  padding: 0;
  flex: none;
}
.ghost-icon:hover {
  background: var(--bg);
  color: var(--ink);
}
.link-btn {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
}
.link-btn:hover {
  color: var(--accent-ink);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.field > span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
}
.ok {
  color: var(--green);
}
.warn {
  color: var(--amber);
}
.info {
  color: var(--blue);
}
.accent {
  color: var(--accent);
}

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