/* [project]/apps/admin/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  color: #17202a;
  background: #f4f6f8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
}

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

button {
  cursor: pointer;
}

.app-shell {
  background: #f4f6f8;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  min-height: 100vh;
  display: grid;
}

.configurator-shell {
  background: #f4f6f8;
  align-content: start;
  gap: 18px;
  min-height: 100vh;
  padding: 24px;
  display: grid;
}

.sidebar {
  background: #fff;
  border-right: 1px solid #d8dee6;
  flex-direction: column;
  gap: 18px;
  min-height: 100vh;
  padding: 20px;
  display: flex;
}

.sidebar-header {
  gap: 4px;
  display: grid;
}

.eyebrow {
  color: #65758b;
  text-transform: uppercase;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

h1, h2, h3, p {
  margin: 0;
}

h1 {
  font-size: 28px;
  line-height: 1.15;
}

h2 {
  font-size: 20px;
  line-height: 1.25;
}

h3 {
  font-size: 15px;
  line-height: 1.3;
}

p {
  color: #415064;
  line-height: 1.55;
}

.product-list {
  gap: 8px;
  display: grid;
}

.catalog-nav {
  gap: 18px;
  display: grid;
}

.nav-section {
  gap: 8px;
  display: grid;
}

.nav-heading {
  color: #65758b;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.product-row {
  color: #17202a;
  text-align: left;
  background: #fff;
  border: 1px solid #d8dee6;
  border-radius: 8px;
  gap: 8px;
  width: 100%;
  padding: 12px;
  display: grid;
}

.product-row:hover, .product-row.is-active {
  background: #f0f6ff;
  border-color: #2d6cdf;
}

.product-row span:first-child {
  gap: 2px;
  min-width: 0;
  display: grid;
}

.product-row strong, .link-button, dd {
  overflow-wrap: anywhere;
}

.row-meta, .muted, .section-heading span, .constraint-note {
  color: #65758b;
  font-size: 13px;
}

.reference-panel, .panel, .status-panel, .page-header, .configurator-header {
  background: #fff;
  border: 1px solid #d8dee6;
  border-radius: 8px;
}

.reference-panel {
  gap: 12px;
  padding: 14px;
  display: grid;
}

.content {
  align-content: start;
  gap: 18px;
  min-width: 0;
  padding: 24px;
  display: grid;
}

.page-header {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 20px;
  padding: 20px;
  display: grid;
}

.configurator-header {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px;
  display: flex;
}

.configurator-layout {
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .85fr);
  align-items: start;
  gap: 18px;
  display: grid;
}

.configurator-main, .configurator-aside, .result-stack, .entitlement-list {
  gap: 18px;
  display: grid;
}

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

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

.field span, .option-label {
  color: #65758b;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.field input, .field textarea {
  color: #17202a;
  background: #fff;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  width: 100%;
  padding: 9px 10px;
}

.field textarea {
  resize: vertical;
}

.segmented-control {
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: fit-content;
  margin-bottom: 14px;
  display: inline-grid;
  overflow: hidden;
}

.segmented-control button {
  color: #415064;
  background: #fff;
  border: 0;
  border-right: 1px solid #cfd8e3;
  padding: 9px 12px;
  font-weight: 750;
}

.segmented-control button:last-child {
  border-right: 0;
}

.segmented-control button.is-active {
  color: #fff;
  background: #1f5fbf;
}

.option-group {
  gap: 8px;
  margin-bottom: 14px;
  display: grid;
}

.option-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  display: grid;
}

.option-button {
  color: #17202a;
  text-align: left;
  overflow-wrap: anywhere;
  background: #fff;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  min-height: 44px;
  padding: 10px 12px;
  font-weight: 750;
}

.option-button:hover, .option-button.is-active {
  background: #f0f6ff;
  border-color: #2d6cdf;
}

.page-header > div:first-child {
  gap: 8px;
  min-width: 0;
  display: grid;
}

.summary-grid, .compact-facts {
  gap: 10px;
  margin: 0;
  display: grid;
}

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

.compact-facts {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

dt {
  color: #65758b;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

dd {
  color: #17202a;
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 650;
}

.panel, .status-panel {
  padding: 18px;
}

.status-panel {
  gap: 8px;
  width: min(100%, 560px);
  margin: auto;
  display: grid;
}

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

.description {
  margin-bottom: 14px;
}

.subheading {
  margin: 14px 0 8px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 680px;
}

th, td {
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e4e9ef;
  padding: 10px 8px;
  font-size: 14px;
}

th {
  color: #65758b;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

tr.is-selected td {
  background: #f0f6ff;
}

.link-button {
  color: #1f5fbf;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
  font-weight: 750;
}

.primary-button {
  color: #fff;
  background: #1f5fbf;
  border: 1px solid #1f5fbf;
  border-radius: 8px;
  width: fit-content;
  padding: 10px 14px;
  font-weight: 750;
}

.primary-button:disabled {
  color: #65758b;
  cursor: not-allowed;
  background: #e4e9ef;
  border-color: #cfd8e3;
}

.detail-grid {
  gap: 18px;
  display: grid;
}

.detail-panel {
  border-top: 1px solid #e4e9ef;
  padding-top: 16px;
}

.detail-panel:first-child {
  border-top: 0;
  padding-top: 0;
}

.nested-table {
  margin-top: 14px;
}

.nested-table table {
  min-width: 420px;
}

.compact-table {
  margin-top: 14px;
}

.compact-table table {
  min-width: 520px;
}

.publish-table {
  min-width: 980px;
}

.stacked-cell {
  gap: 3px;
  display: grid;
}

.status-pill {
  color: #415064;
  background: #f8fafc;
  border: 1px solid #cfd8e3;
  border-radius: 999px;
  width: fit-content;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 750;
  display: inline-flex;
}

.status-pill.is-succeeded {
  color: #1d4f39;
  background: #eff8f3;
  border-color: #b9d5c8;
}

.status-pill.is-failed {
  color: #8a2d18;
  background: #fff4f0;
  border-color: #efb8a8;
}

.status-pill.is-running, .status-pill.is-pending {
  color: #1f5fbf;
  background: #f0f6ff;
  border-color: #bdd2f3;
}

.publish-result {
  gap: 12px;
  display: grid;
}

.snapshot-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  display: grid;
}

.json-block {
  color: #edf3f8;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  background: #111820;
  border: 1px solid #253144;
  border-radius: 8px;
  max-height: 360px;
  margin: 8px 0 0;
  padding: 12px;
  font-size: 12px;
  line-height: 1.5;
  overflow: auto;
}

.entitlement-table {
  min-width: 760px;
}

.entitlement-table td:first-child {
  gap: 3px;
  display: grid;
}

.entitlement-key {
  color: #1d4f39;
  overflow-wrap: anywhere;
}

.origin-cell {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.origin-badge {
  color: #415064;
  background: #f8fafc;
  border: 1px solid #cfd8e3;
  border-radius: 999px;
  width: fit-content;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 750;
  display: inline-flex;
}

.origin-badge.is-derived {
  color: #1d4f39;
  background: #eff8f3;
  border-color: #b9d5c8;
}

.attribute-list {
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  display: flex;
}

.attribute-list div, .chip {
  background: #f8fafc;
  border: 1px solid #d8dee6;
  border-radius: 999px;
  padding: 5px 9px;
}

.attribute-list dt, .attribute-list dd {
  text-transform: none;
  font-size: 12px;
  display: inline;
}

.attribute-list dt:after {
  content: ": ";
}

.chip-row {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  display: flex;
}

.chip {
  color: #17202a;
  font-size: 13px;
  font-weight: 650;
}

.constraint-note {
  color: #8a4b18;
  margin-top: 12px;
}

.issue-list, .entitlement-list > div {
  border-top: 1px solid #e4e9ef;
  padding-top: 12px;
}

.issue-list ul {
  gap: 8px;
  margin: 8px 0 0;
  padding-left: 18px;
  display: grid;
}

.issue-list li {
  color: #415064;
}

.issue-list li span {
  display: block;
}

.entitlement-list h3 {
  margin-bottom: 8px;
}

.entitlement-list > div {
  gap: 8px;
  display: grid;
}

.banner {
  color: #8a2d18;
  background: #fff4f0;
  border: 1px solid #efb8a8;
  border-radius: 8px;
  padding: 12px 14px;
}

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

  .sidebar {
    border-bottom: 1px solid #d8dee6;
    border-right: 0;
    min-height: auto;
  }

  .product-list {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .page-header, .configurator-layout {
    grid-template-columns: 1fr;
  }

  .configurator-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .content, .sidebar, .configurator-shell {
    padding: 14px;
  }

  .summary-grid, .compact-facts, .form-grid {
    grid-template-columns: 1fr;
  }

  .segmented-control {
    width: 100%;
  }

  .section-heading {
    gap: 4px;
    display: grid;
  }
}

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