@charset "UTF-8";

/* src/styles.scss */
:root {
  --bg: #f3f4f6;
  --surface: #ffffff;
  --surface-2: #fafafb;
  --line: #e7e8ec;
  --line-2: #eef0f3;
  --text: #17181a;
  --muted: #6b7280;
  --faint: #9aa1aa;
  --accent: #e01f26;
  --accent-hover: #c2181e;
  --accent-soft: #fdecec;
  --sidebar: #161719;
  --sb-line: #2a2c30;
  --sb-text: #a4a8b0;
  --sb-hover: #1f2124;
  --ok: #0f9d58;
  --ok-soft: #e7f5ed;
  --warn: #e08a00;
  --warn-soft: #fdf1e2;
  --info: #2563eb;
  --info-soft: #e8effd;
  --rc: 14px;
  --rk: 10px;
  --rp: 7px;
  --shadow: 0 1px 2px rgba(16, 18, 20, 0.04), 0 6px 20px rgba(16, 18, 20, 0.06);
  --shadow-lg: 0 12px 40px rgba(16, 18, 20, 0.13);
  --font-h: "Archivo", sans-serif;
  --font-b: "Inter", sans-serif;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--accent-soft);
  color: var(--accent-hover);
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  background: #d4d6db;
  border: 3px solid var(--bg);
  border-radius: 8px;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: var(--accent-hover);
}
button {
  font-family: var(--font-b);
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@keyframes ringIn {
  from {
    stroke-dashoffset: var(--full);
  }
  to {
    stroke-dashoffset: var(--to);
  }
}
@keyframes shimmer {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}
.topbar {
  height: 64px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 10;
  flex: none;
}
.title-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.crumbs {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: var(--faint);
}
.crumbs .cur {
  color: var(--muted);
}
.crumbs a {
  color: var(--faint);
}
.crumbs a:hover {
  color: var(--muted);
}
.page-title {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1;
}
.title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.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-b);
  font-size: 13px;
  color: var(--text);
  outline: none;
}
.search-box input:focus {
  border-color: var(--accent);
  background: #fff;
}
.saved-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--ok);
  margin-left: 8px;
  white-space: nowrap;
}
.saved-hint.saving {
  color: var(--faint);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 38px;
  padding: 0 15px;
  border: 0;
  border-radius: var(--rk);
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
}
.btn-outline {
  border: 1px solid var(--line);
}
.btn-outline:hover {
  background: var(--surface-2);
}
.btn-sm {
  height: 36px;
  padding: 0 13px;
  font-size: 12.5px;
}
.btn-xs {
  height: 32px;
  padding: 0 11px;
  font-size: 12px;
  border-radius: 8px;
}
.btn-xs.btn-outline:hover {
  background: var(--surface);
  border-color: #d4d6db;
}
.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(--surface-2);
  color: var(--text);
}
.icon-btn-30 {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}
.icon-btn-30:hover {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
}
.icon-btn-32 {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.icon-btn-32:hover {
  background: var(--surface);
  border-color: #d4d6db;
  color: var(--text);
}
.icon-btn-32.danger:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.ghost-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  border: 0;
  background: transparent;
  color: var(--faint);
  cursor: pointer;
  padding: 0;
  flex: none;
}
.ghost-icon:hover {
  background: var(--surface-2);
  color: var(--text);
}
.btn-dashed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px dashed var(--line);
  border-radius: var(--rk);
  background: transparent;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
}
.btn-dashed:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.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-hover);
}
.input {
  height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--rk);
  padding: 0 11px;
  font-family: var(--font-b);
  font-size: 13px;
  background: var(--surface-2);
  color: var(--text);
  outline: none;
  width: 100%;
}
.input:focus {
  border-color: var(--accent);
  background: #fff;
}
textarea.input {
  height: auto;
  padding: 9px 11px;
  resize: vertical;
  line-height: 1.4;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.field > span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
}
.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-b);
  font-size: 13px;
  background: var(--surface-2);
  color: var(--text);
  outline: none;
  appearance: none;
  cursor: pointer;
}
.select-wrap select:focus {
  border-color: var(--accent);
  background: #fff;
}
.select-wrap > app-icon {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--faint);
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--rc);
  box-shadow: var(--shadow);
}
.card-head {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  flex: none;
}
.card-head h2,
.card-head h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.card-head.sm {
  height: 52px;
  padding: 0 16px;
}
.card-head.sm h2,
.card-head.sm h3 {
  font-size: 14px;
}
.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.info {
  color: var(--info);
  background: var(--info-soft);
  font-weight: 700;
}
.pill.warn {
  color: var(--warn);
  background: var(--warn-soft);
  font-weight: 700;
}
.pill.ok {
  color: var(--ok);
  background: var(--ok-soft);
  font-weight: 700;
}
.pill.accent {
  color: var(--accent);
  background: var(--accent-soft);
  font-weight: 700;
}
.pill.neutral {
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 700;
}
.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: 7px;
  background: transparent;
  font-family: var(--font-b);
  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(--text);
}
.seg.mini {
  padding: 2px;
}
.seg.mini button {
  flex: none;
  height: 26px;
  font-size: 11.5px;
  border-radius: 6px;
}
.switch {
  position: relative;
  width: 38px;
  height: 22px;
  border: 0;
  border-radius: 11px;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  flex: none;
  transition: background 0.15s ease;
}
.switch .knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: left 0.15s ease;
}
.switch.on {
  background: var(--accent);
}
.switch.on .knob {
  left: 18px;
}
.switch.sm {
  width: 36px;
  height: 20px;
  border-radius: 10px;
}
.switch.sm .knob {
  width: 16px;
  height: 16px;
}
.skeleton {
  border-radius: 7px;
  background:
    linear-gradient(
      90deg,
      var(--line-2) 25%,
      var(--surface-2) 50%,
      var(--line-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
}
.cdk-drag-preview {
  box-shadow: var(--shadow-lg) !important;
  border-radius: var(--rk);
  opacity: 0.95;
}
.cdk-drag-animating {
  transition: transform 200ms cubic-bezier(0, 0, 0.2, 1);
}
.cdk-drop-list-dragging .cdk-drag:not(.cdk-drag-placeholder) {
  transition: transform 200ms cubic-bezier(0, 0, 0.2, 1);
}

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