/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  --bg: #202123;
  --bg-deep: #171717;
  --bg-elevated: #1f1f1f;
  --surface: #2a2b32;
  --surface-strong: #30323a;
  --surface-soft: #24262d;
  --ink: #ececf1;
  --muted: #a9abb8;
  --line: #ffffff17;
  --line-strong: #ffffff29;
  --accent: #10a37f;
  --accent-strong: #1ec89b;
  --accent-soft: #10a37f1f;
  --warm: #f4b860;
  --danger: #ef6b6b;
  --good: #79d7be;
  --shadow: 0 18px 38px #00000038;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  min-height: 100%;
}

body {
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  margin: 0;
  font-family: Soehne, Inter, IBM Plex Sans, Noto Sans KR, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-family: IBM Plex Mono, monospace;
}

.shell {
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
  display: grid;
}

.sidebar {
  border-right: 1px solid var(--line);
  background: #171717;
  align-content: start;
  gap: 18px;
  min-height: 100vh;
  padding: 18px 14px;
  display: grid;
  position: sticky;
  top: 0;
}

.brand h1, .pageHeader h2 {
  margin: 0;
  font-family: Soehne, Inter, IBM Plex Sans, Noto Sans KR, sans-serif;
}

.brand h1 {
  letter-spacing: -.02em;
  font-size: 1.15rem;
}

.brand p {
  color: var(--muted);
  margin: 8px 0 0;
  font-size: .9rem;
  line-height: 1.45;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: .74rem;
  font-weight: 700;
  display: block;
}

.sidebar nav {
  gap: 6px;
  display: grid;
}

.navGroup {
  gap: 8px;
  display: grid;
}

.sidebar nav a {
  min-height: 40px;
  color: var(--muted);
  background: none;
  border: 1px solid #0000;
  border-radius: 10px;
  align-items: center;
  padding: 0 12px;
  transition: background .12s, border-color .12s, color .12s;
  display: flex;
}

.sidebar nav a:hover {
  border-color: var(--line);
  color: var(--ink);
  background: #ffffff0a;
}

.sidebar nav a.isActive {
  color: var(--ink);
  border-color: var(--line-strong);
  background: #ffffff14;
}

.navSubmenu {
  gap: 6px;
  padding-left: 14px;
  display: grid;
}

.sidebar nav a.isSubnav {
  min-height: 34px;
  color: var(--muted);
  background: none;
  border-radius: 8px;
  font-size: .86rem;
}

.contentShell {
  background: #212121;
  grid-template-rows: auto 1fr;
  min-width: 0;
  display: grid;
}

.topbar {
  border-bottom: 1px solid var(--line);
  z-index: 10;
  background: #212121f5;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  display: flex;
  position: sticky;
  top: 0;
}

.topbar h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.topbarMeta {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.content {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 28px 24px 64px;
}

.pageHeader {
  margin-bottom: 28px;
}

.pageHeader h2 {
  letter-spacing: -.03em;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 600;
}

.pageIntro {
  max-width: 62rem;
  color: var(--muted);
  margin: 12px 0 0;
  line-height: 1.7;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
  display: grid;
}

.card, .panel {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: 16px;
}

.card {
  gap: 8px;
  padding: 18px;
  display: grid;
}

.card span {
  color: var(--muted);
}

.card strong {
  letter-spacing: -.03em;
  font-size: 1.8rem;
}

.panel {
  padding: 18px;
}

.panel h3 {
  margin-top: 0;
}

.ghostLink, .reportLink {
  color: var(--accent);
}

.ghostLink:hover, .reportLink:hover {
  text-underline-offset: .2em;
  text-decoration: underline;
}

.tableActionRow {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.filterPanel {
  gap: 16px;
  margin-bottom: 18px;
  display: grid;
}

.filterBlock {
  gap: 10px;
  display: grid;
}

.filterChipRow {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.filterChip {
  border: 1px solid var(--line);
  min-height: 30px;
  color: var(--muted);
  background: #ffffff08;
  border-radius: 999px;
  align-items: center;
  padding: 0 12px;
  font-size: .84rem;
  font-weight: 700;
  display: inline-flex;
}

.filterChip.isActive {
  color: var(--ink);
  background: #ffffff14;
  border-color: #ffffff2e;
}

.inlineActionLink {
  background: var(--accent-soft);
  min-height: 28px;
  color: var(--accent);
  border: 1px solid #6ee7c838;
  border-radius: 999px;
  align-items: center;
  padding: 0 10px;
  font-size: .8rem;
  font-weight: 700;
  display: inline-flex;
}

.inlineActionLink:hover {
  background: #6ee7c82e;
}

.panelGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  display: grid;
}

.panelWide {
  grid-column: 1 / -1;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  padding: 12px 10px;
  font-size: .94rem;
}

th {
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 700;
}

.expandRow {
  cursor: pointer;
}

.expandRow:hover td {
  background: #6ee7c80b;
}

.expandRow.isOpen td {
  background: #6ee7c814;
}

.expandButton {
  color: inherit;
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  align-items: center;
  gap: 10px;
  padding: 0;
  display: inline-flex;
}

.expandChevron {
  background: var(--accent-soft);
  width: 24px;
  height: 24px;
  color: var(--accent);
  border-radius: 999px;
  place-items: center;
  font-weight: 700;
  display: inline-grid;
}

.deploymentLabel {
  gap: 3px;
  display: grid;
}

.deploymentLabel small {
  color: var(--muted);
  font-size: .78rem;
}

.cellStack {
  gap: 6px;
  display: grid;
}

.cellStack span {
  color: var(--muted);
  font-size: .84rem;
}

.detailRow td {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.automationDetail {
  background: linear-gradient(#08111deb, #091524e0);
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 22px;
  display: grid;
}

.detailBlock {
  border: 1px solid var(--line);
  background: linear-gradient(#132238c7, #0c1727b8);
  border-radius: 20px;
  min-width: 0;
  padding: 18px;
}

.detailBlockWide {
  grid-column: auto;
}

.detailBlock h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.automationSummary {
  color: var(--ink);
  max-width: 90ch;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.72;
}

.actionStrip {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  display: flex;
}

.actionPill {
  background: var(--accent-soft);
  min-height: 30px;
  color: var(--accent);
  border: 1px solid #6ee7c833;
  border-radius: 999px;
  align-items: center;
  padding: 0 12px;
  font-size: .84rem;
  font-weight: 600;
  display: inline-flex;
}

.actionButton {
  color: #04131b;
  cursor: pointer;
  background: linear-gradient(#39d8c1, #1eb7a4);
  border: 1px solid #6ee7c847;
  border-radius: 999px;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  font-size: .84rem;
  font-weight: 800;
  display: inline-flex;
}

.actionButton:hover {
  filter: brightness(1.05);
}

.actionButton.isSecondary {
  border-color: var(--line);
  color: var(--ink);
  background: #ffffff08;
}

.actionButton.isSecondary:hover {
  background: #ffffff0f;
}

.logViewer {
  margin-top: 12px;
}

.logFrame {
  color: #d9fffb;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
  background: #020711;
  border: 1px solid #6ee7c824;
  border-radius: 14px;
  max-height: 20rem;
  margin: 10px 0 0;
  padding: 14px;
  font-size: .84rem;
  line-height: 1.55;
  overflow: auto;
}

.badgeRow {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.statusBadge, .detailBadge {
  min-height: 28px;
  color: var(--ink);
  letter-spacing: .01em;
  background: #ffffff0a;
  border: 1px solid #9ebce524;
  border-radius: 999px;
  align-items: center;
  padding: 0 10px;
  font-size: .78rem;
  font-weight: 700;
  display: inline-flex;
}

.statusBadge.isGood {
  color: #93f0a1;
  background: #7ee78724;
  border-color: #7ee78738;
}

.statusBadge.isMuted {
  color: #b0c0da;
  background: #8ea2c21f;
  border-color: #8ea2c229;
}

.statusBadge.isBad {
  color: #ff9b95;
  background: #ff7b7224;
  border-color: #ff7b7233;
}

.statusBadge.isWarn {
  color: #ffc98d;
  background: #ffb86b24;
  border-color: #ffb86b38;
}

.statusBadge.isWarm {
  color: var(--accent);
  background: #6ee7c824;
  border-color: #6ee7c838;
}

.statusBadge.isSoft {
  color: #a9c0ff;
  background: #6a8dff24;
  border-color: #6a8dff33;
}

.statusBadge.isNeutral, .detailBadge {
  color: #cad7ee;
  background: #ffffff0a;
  border-color: #9ebce524;
}

.inlineMeta {
  color: var(--muted);
  font-size: .84rem;
}

.eventList, .revisionList {
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.eventList li, .revisionList li {
  border: 1px solid var(--line);
  background: #ffffff08;
  border-radius: 14px;
  gap: 8px;
  min-width: 0;
  padding: 14px;
  display: grid;
}

.revisionList li {
  grid-template-columns: minmax(0, 1.8fr) repeat(3, minmax(0, 1fr));
  align-items: start;
}

.emptyState {
  color: var(--muted);
  margin: 0;
}

.detailList {
  grid-template-columns: minmax(92px, 128px) minmax(0, 1fr);
  align-items: start;
  gap: 10px 14px;
  margin: 0;
  display: grid;
}

.detailList dt {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.detailList dd {
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
  margin: 0;
  line-height: 1.55;
}

.decisionForm {
  gap: 8px;
  min-width: 220px;
  display: grid;
}

.decisionForm select, .decisionForm input, .decisionForm button {
  border: 1px solid var(--line);
  width: 100%;
  font: inherit;
  border-radius: 12px;
  padding: 10px 12px;
}

.decisionForm select, .decisionForm input {
  color: var(--ink);
  background: #ffffff0a;
}

.decisionForm button {
  color: #04131b;
  cursor: pointer;
  background: linear-gradient(#39d8c1, #1eb7a4);
  border: 0;
  font-weight: 800;
}

.reportHeader {
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  display: flex;
}

.reportMetaGrid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 18px;
  margin-bottom: 18px;
  display: grid;
}

.reportViewerGrid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 18px;
  display: grid;
}

.reportViewerGrid.isSingle {
  grid-template-columns: minmax(0, 1fr);
}

.reportViewSwitch {
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  display: flex;
}

.viewSwitchLink {
  border: 1px solid var(--line);
  min-height: 34px;
  color: var(--muted);
  background: #ffffff08;
  border-radius: 999px;
  align-items: center;
  padding: 0 14px;
  font-weight: 700;
  display: inline-flex;
}

.viewSwitchLink.isActive {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: #6ee7c838;
}

.reportPanel {
  min-width: 0;
}

.reportPanelHeader {
  margin-bottom: 14px;
}

.reportSummaryText {
  color: var(--ink);
  margin: 10px 0 0;
  line-height: 1.65;
}

.reportModeBadges {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  display: flex;
}

.reportFrame {
  border: 1px solid var(--line);
  background: #171717;
  border-radius: 14px;
  width: 100%;
  min-height: 82rem;
}

.reportMarkdown {
  border: 1px solid var(--line);
  color: #e9e9ee;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
  background: #171717;
  border-radius: 14px;
  min-height: 82rem;
  margin: 0;
  padding: 18px;
  font-size: .93rem;
  line-height: 1.7;
  overflow: auto;
}

.insightStack {
  gap: 12px;
  display: grid;
}

.insightCard {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  border-radius: 14px;
  gap: 10px;
  padding: 14px;
  display: grid;
}

.insightCard p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.insightCard strong {
  color: var(--ink);
}

.insightCardHeader {
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.insightCardHeader p {
  margin-top: 4px;
}

.identityRow {
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.avatarBadge {
  border: 1px solid var(--line-strong);
  width: 40px;
  height: 40px;
  color: var(--ink);
  letter-spacing: .04em;
  background: linear-gradient(#ffffff1f, #ffffff0d);
  border-radius: 999px;
  place-items: center;
  font-size: .85rem;
  font-weight: 700;
  display: inline-grid;
}

@media (max-width: 960px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: auto;
    position: static;
  }

  .topbar {
    padding: 14px 18px;
  }

  .content {
    padding: 18px 16px 48px;
  }

  .panelGrid, .revisionList li {
    grid-template-columns: 1fr;
  }

  .detailList {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .reportHeader, .reportMetaGrid, .reportViewerGrid {
    grid-template-columns: 1fr;
  }

  .reportHeader {
    align-items: start;
  }

  .reportFrame, .reportMarkdown {
    min-height: 38rem;
  }
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/