/* [project]/app/globals.css [app-client] (css) */
:root {
  --bg: #f4efe6;
  --surface: #fffbf5eb;
  --surface-strong: #fffdf8;
  --text: #1d2430;
  --muted: #586476;
  --line: #2836481f;
  --accent: #0e7490;
  --accent-strong: #155e75;
  --accent-soft: #0e74901f;
  --gold: #b38a2f;
  --success: #0f766e;
  --danger: #b91c1c;
  --radius-xl: 28px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 24px 60px #3341551f;
  --shadow-soft: 0 18px 36px #0f172a14;
  --sans: "Segoe UI", "Inter", system-ui, sans-serif;
  --mono: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

body {
  color: var(--text);
  font-family: var(--sans);
  background: radial-gradient(circle at 0 0, #b38a2f2e, #0000 28%), radial-gradient(circle at 100% 0, #0e749033, #0000 30%), linear-gradient(#f7f2ea 0%, #ede6d9 100%);
  margin: 0;
}

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

button, input, select, textarea {
  font: inherit;
}

.shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
}

.topbarAdmin {
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  margin-bottom: 20px;
  display: flex;
}

.brand {
  align-items: center;
  gap: 16px;
  display: flex;
}

.brandMark {
  background: #fff;
  border: 1px solid #ffffff80;
  border-radius: 22px;
  flex: none;
  width: 72px;
  height: 72px;
  overflow: hidden;
  box-shadow: 0 18px 30px #0e749029;
}

.eyebrow {
  color: var(--accent-strong);
  letter-spacing: .08em;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
}

.eyebrow:before {
  content: "";
  background: var(--gold);
  border-radius: 999px;
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 8px #b38a2f1f;
}

.titleSmall {
  letter-spacing: -.04em;
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.helperText {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.buttonRow {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.button, .buttonGhost, .tabButton {
  cursor: pointer;
  border: none;
  border-radius: 999px;
  padding: 11px 16px;
  transition: transform .16s, box-shadow .16s, background .16s, color .16s;
}

.button {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px #0e749038;
}

.button:hover, .buttonGhost:hover, .tabButton:hover {
  transform: translateY(-1px);
}

.buttonGhost {
  color: var(--accent-strong);
  background: none;
  border: 1px solid #0e74902e;
}

.metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
  display: grid;
}

.metricCard, .panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.metricCard {
  padding: 20px;
}

.metricLabel {
  color: var(--muted);
  font-size: .9rem;
}

.metricValue {
  font-family: var(--mono);
  letter-spacing: -.04em;
  margin-top: 14px;
  font-size: 2rem;
}

.tabsBar {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.tabButton {
  color: var(--muted);
  background: #ffffffb3;
  border: 1px solid #28364814;
}

.tabButtonActive {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px #0e749033;
}

.panel {
  padding: 22px;
}

.panelHero {
  min-height: 100%;
}

.panelHeader {
  justify-content: space-between;
  align-items: start;
  gap: 14px;
  margin-bottom: 16px;
  display: flex;
}

.panelTitle {
  letter-spacing: .02em;
  margin: 0;
  font-size: 1rem;
}

.titlePanelLarge {
  letter-spacing: -.04em;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.panelDescription {
  color: var(--muted);
  margin: 6px 0 0;
  line-height: 1.6;
}

.sectionLabel {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin: 0 0 12px;
  font-size: .82rem;
}

.overviewGrid {
  grid-template-columns: 1.3fr .9fr;
  gap: 18px;
  display: grid;
}

.overviewHighlights, .statusList {
  gap: 12px;
  display: grid;
}

.highlightItem, .statusItem {
  border-radius: var(--radius-md);
  background: #ffffffb8;
  border: 1px solid #28364814;
  padding: 16px;
}

.highlightItem strong, .statusItem strong {
  margin-bottom: 6px;
  display: block;
}

.highlightItem span, .statusItem span {
  color: var(--muted);
  line-height: 1.55;
}

.searchShell {
  min-width: min(360px, 100%);
}

.cardsGrid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  display: grid;
}

.entityCard {
  text-align: left;
  background: var(--surface-strong);
  border-radius: var(--radius-lg);
  cursor: pointer;
  width: 100%;
  box-shadow: var(--shadow-soft);
  border: 1px solid #28364814;
  gap: 12px;
  padding: 18px;
  display: grid;
}

.entityCard:hover {
  border-color: #0e749038;
}

.staticCard {
  cursor: default;
}

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

.entityTitle {
  font-size: 1.08rem;
  font-weight: 700;
}

.entityKey {
  color: var(--accent-strong);
  font-family: var(--mono);
  margin-top: 4px;
  font-size: .85rem;
}

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

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

.entityMeta span, .pill {
  color: var(--accent-strong);
  background: #0e749014;
  border-radius: 999px;
  align-items: center;
  padding: 7px 10px;
  font-size: .8rem;
  display: inline-flex;
}

.pillSuccess {
  color: var(--success);
  background: #0f766e1f;
}

.pillMuted {
  color: var(--muted);
  background: #5864761f;
}

.entityFooter {
  color: var(--muted);
  font-size: .82rem;
}

.formGrid, .editorGrid, .runtimeGrid {
  gap: 16px;
  display: grid;
}

.editorGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.runtimeGrid {
  grid-template-columns: .9fr 1.1fr;
}

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

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

.field label {
  font-size: .92rem;
  font-weight: 600;
}

.input, .textarea, .select {
  width: 100%;
  color: var(--text);
  background: #ffffffd9;
  border: 1px solid #2836481f;
  border-radius: 16px;
  padding: 14px 16px;
}

.textarea {
  resize: vertical;
  min-height: 140px;
}

.textareaTall {
  min-height: 240px;
}

.checkboxRow {
  color: var(--text);
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.checkboxRow input {
  width: 18px;
  height: 18px;
}

.responseBox, .emptyState, .runtimeSummary {
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid #28364814;
  padding: 16px;
}

.responseBox {
  white-space: pre-wrap;
  font-family: var(--mono);
  min-height: 100%;
  font-size: .88rem;
  line-height: 1.55;
  overflow: auto;
}

.runtimeSummary {
  color: var(--muted);
  gap: 6px;
  display: grid;
}

.assignmentGrid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  display: grid;
}

.assignmentCard {
  border-radius: var(--radius-md);
  cursor: pointer;
  background: #ffffffc2;
  border: 1px solid #28364814;
  align-items: start;
  gap: 12px;
  padding: 14px;
  display: flex;
}

.assignmentCardActive {
  border-color: #0e749059;
  box-shadow: 0 0 0 3px #0e74901f;
}

.assignmentCard input {
  margin-top: 4px;
}

.modalOverlay {
  z-index: 50;
  background: #1118276b;
  place-items: center;
  padding: 24px;
  display: grid;
  position: fixed;
  inset: 0;
}

.modalCard {
  background: var(--surface-strong);
  border-radius: var(--radius-xl);
  border: 1px solid #ffffffb3;
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  padding: 24px;
  overflow: auto;
  box-shadow: 0 30px 90px #0f172a3d;
}

.modalLarge {
  width: min(1080px, 100%);
}

.footerNote {
  color: var(--muted);
  margin-top: 20px;
  font-size: .92rem;
  line-height: 1.55;
}

.loginShell {
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  display: grid;
}

.loginCard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  width: min(560px, 100%);
  box-shadow: var(--shadow);
  gap: 24px;
  padding: 28px;
  display: grid;
}

.loginBrand {
  align-items: center;
  gap: 18px;
  display: flex;
}

.loginMark {
  flex: none;
}

.loginTitle {
  letter-spacing: -.04em;
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

@media (max-width: 1100px) {
  .overviewGrid, .runtimeGrid, .editorGrid {
    grid-template-columns: 1fr;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .shell {
    padding: 16px;
  }

  .topbarAdmin, .loginBrand, .panelHeader {
    flex-direction: column;
    align-items: start;
  }

  .panel, .metricCard, .loginCard, .modalCard {
    padding: 18px;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .brand {
    align-items: start;
  }

  .brandMark {
    border-radius: 18px;
    width: 56px;
    height: 56px;
  }

  .searchShell {
    min-width: 100%;
  }
}

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