/*
 * Minimal local utility fallback for offline/local previews.
 * It is scoped behind .nd-no-tailwind and only activates when the Tailwind CDN
 * utility classes are unavailable.
 */
.nd-no-tailwind body {
  margin: 0;
  background: #121214;
  color: #e8e0eb;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  height: 100vh;
  overflow: hidden;
  display: flex;
}

.nd-no-tailwind * {
  box-sizing: border-box;
}
.nd-no-tailwind a {
  color: inherit;
  text-decoration: none;
}
.nd-no-tailwind img {
  max-width: 100%;
}
.nd-no-tailwind table {
  border-collapse: collapse;
}
.nd-no-tailwind button {
  font: inherit;
}
.nd-no-tailwind [hidden] {
  display: none !important;
}

.nd-no-tailwind aside {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 40;
  display: flex;
  width: 280px;
  height: 100%;
  flex-direction: column;
  gap: 1rem;
  border-right: 1px solid rgba(75, 68, 82, 0.25);
  background: #221e26;
  padding: 1rem;
}

.nd-no-tailwind #nd-nav {
  flex: 1;
  overflow-y: auto;
}

.nd-no-tailwind #nd-nav a,
.nd-no-tailwind aside > a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: #cdc3d4;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.nd-no-tailwind #nd-nav a + a {
  margin-top: 0.25rem;
}
.nd-no-tailwind #nd-nav a:hover,
.nd-no-tailwind aside > a:hover {
  background: rgba(56, 51, 59, 0.3);
  color: #e8e0eb;
}
.nd-no-tailwind #nd-nav a.active {
  background: rgba(95, 37, 159, 0.16);
  color: #dab9ff;
  font-weight: 700;
}

.nd-no-tailwind .material-symbols-outlined {
  display: inline-block;
  width: 20px;
  height: 20px;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  line-height: 1;
}
.nd-no-tailwind aside img {
  width: auto;
  max-height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.nd-no-tailwind aside .mt-auto {
  margin-top: auto;
}
.nd-no-tailwind aside .border-t {
  border-top: 1px solid rgba(75, 68, 82, 0.25);
}

.nd-no-tailwind body > .ml-\[280px\] {
  margin-left: 280px;
  display: flex;
  height: 100%;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
}

.nd-no-tailwind #nd-view {
  flex: 1;
  overflow-y: auto;
  background: #121214;
}

/* Core utility subset used by the release mockup. */
.nd-no-tailwind .fixed {
  position: fixed;
}
.nd-no-tailwind .relative {
  position: relative;
}
.nd-no-tailwind .flex {
  display: flex;
}
.nd-no-tailwind .inline-flex {
  display: inline-flex;
}
.nd-no-tailwind .inline-block {
  display: inline-block;
}
.nd-no-tailwind .grid {
  display: grid;
}
.nd-no-tailwind .hidden {
  display: none !important;
}
.nd-no-tailwind .block {
  display: block;
}
.nd-no-tailwind .w-full {
  width: 100%;
}
.nd-no-tailwind .h-full {
  height: 100%;
}
.nd-no-tailwind .h-screen {
  height: 100vh;
}
.nd-no-tailwind .flex-1 {
  flex: 1 1 0%;
}
.nd-no-tailwind .flex-col {
  flex-direction: column;
}
.nd-no-tailwind .flex-wrap {
  flex-wrap: wrap;
}
.nd-no-tailwind .items-center {
  align-items: center;
}
.nd-no-tailwind .items-start {
  align-items: flex-start;
}
.nd-no-tailwind .justify-center {
  justify-content: center;
}
.nd-no-tailwind .justify-between {
  justify-content: space-between;
}
.nd-no-tailwind .text-left {
  text-align: left;
}
.nd-no-tailwind .text-center {
  text-align: center;
}
.nd-no-tailwind .overflow-hidden {
  overflow: hidden;
}
.nd-no-tailwind .overflow-y-auto {
  overflow-y: auto;
}
.nd-no-tailwind .overflow-x-auto {
  overflow-x: auto;
}
.nd-no-tailwind .shrink-0 {
  flex-shrink: 0;
}
.nd-no-tailwind .min-w-0 {
  min-width: 0;
}
.nd-no-tailwind .cursor-pointer {
  cursor: pointer;
}
.nd-no-tailwind .list-none {
  list-style: none;
}
.nd-no-tailwind .list-disc {
  list-style: disc;
}
.nd-no-tailwind .break-all {
  word-break: break-all;
}

.nd-no-tailwind .mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.nd-no-tailwind .mt-auto {
  margin-top: auto;
}
.nd-no-tailwind .mt-0\.5 {
  margin-top: 0.125rem;
}
.nd-no-tailwind .mt-1 {
  margin-top: 0.25rem;
}
.nd-no-tailwind .mt-3 {
  margin-top: 0.75rem;
}
.nd-no-tailwind .mt-4 {
  margin-top: 1rem;
}
.nd-no-tailwind .mb-3 {
  margin-bottom: 0.75rem;
}
.nd-no-tailwind .mb-4 {
  margin-bottom: 1rem;
}
.nd-no-tailwind .ml-2 {
  margin-left: 0.5rem;
}
.nd-no-tailwind .pl-5 {
  padding-left: 1.25rem;
}
.nd-no-tailwind .p-1 {
  padding: 0.25rem;
}
.nd-no-tailwind .p-4 {
  padding: 1rem;
}
.nd-no-tailwind .px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.nd-no-tailwind .px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.nd-no-tailwind .px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.nd-no-tailwind .px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.nd-no-tailwind .py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.nd-no-tailwind .py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.nd-no-tailwind .py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.nd-no-tailwind .py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.nd-no-tailwind .py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.nd-no-tailwind .pt-3 {
  padding-top: 0.75rem;
}

.nd-no-tailwind .gap-1 {
  gap: 0.25rem;
}
.nd-no-tailwind .gap-2 {
  gap: 0.5rem;
}
.nd-no-tailwind .gap-3 {
  gap: 0.75rem;
}
.nd-no-tailwind .gap-4 {
  gap: 1rem;
}
.nd-no-tailwind .space-y-1\.5 > * + * {
  margin-top: 0.375rem;
}
.nd-no-tailwind .space-y-4 > * + * {
  margin-top: 1rem;
}
.nd-no-tailwind .space-y-6 > * + * {
  margin-top: 1.5rem;
}
.nd-no-tailwind .space-y-8 > * + * {
  margin-top: 2rem;
}

.nd-no-tailwind .grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.nd-no-tailwind .grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.nd-no-tailwind .gap-stack-gap {
  gap: 1rem;
}
.nd-no-tailwind .p-container-margin {
  padding: 2rem;
}
.nd-no-tailwind .max-w-7xl {
  max-width: 80rem;
}
.nd-no-tailwind .max-w-\[1500px\] {
  max-width: 1500px;
}
.nd-no-tailwind .min-w-\[120px\] {
  min-width: 120px;
}
.nd-no-tailwind .min-w-\[150px\] {
  min-width: 150px;
}
.nd-no-tailwind .min-w-\[160px\] {
  min-width: 160px;
}
.nd-no-tailwind .min-w-\[520px\] {
  min-width: 520px;
}
.nd-no-tailwind .min-w-\[900px\] {
  min-width: 900px;
}
.nd-no-tailwind .min-w-\[1020px\] {
  min-width: 1020px;
}
.nd-no-tailwind .h-5 {
  height: 1.25rem;
}
.nd-no-tailwind .h-6 {
  height: 1.5rem;
}
.nd-no-tailwind .h-8 {
  height: 2rem;
}
.nd-no-tailwind .h-2 {
  height: 0.5rem;
}
.nd-no-tailwind .w-2 {
  width: 0.5rem;
}
.nd-no-tailwind .w-8 {
  width: 2rem;
}

.nd-no-tailwind .rounded-md {
  border-radius: 0.375rem;
}
.nd-no-tailwind .rounded-lg {
  border-radius: 0.5rem;
}
.nd-no-tailwind .rounded-full {
  border-radius: 9999px;
}
.nd-no-tailwind .border {
  border: 1px solid rgba(75, 68, 82, 0.35);
}
.nd-no-tailwind .border-t {
  border-top: 1px solid rgba(75, 68, 82, 0.25);
}
.nd-no-tailwind .border-r {
  border-right: 1px solid rgba(75, 68, 82, 0.25);
}
.nd-no-tailwind .border-outline-variant\/10 {
  border-color: rgba(75, 68, 82, 0.25);
}
.nd-no-tailwind .border-outline-variant\/30 {
  border-color: rgba(75, 68, 82, 0.55);
}
.nd-no-tailwind .border-outline-variant\/50 {
  border-color: rgba(75, 68, 82, 0.75);
}
.nd-no-tailwind .border-primary\/40 {
  border-color: rgba(218, 185, 255, 0.4);
}
.nd-no-tailwind .border-primary\/30 {
  border-color: rgba(218, 185, 255, 0.3);
}
.nd-no-tailwind .border-status-discovery\/30 {
  border-color: rgba(56, 189, 248, 0.3);
}
.nd-no-tailwind .border-status-delivered\/30 {
  border-color: rgba(16, 185, 129, 0.3);
}
.nd-no-tailwind .border-status-in-progress\/30 {
  border-color: rgba(245, 158, 11, 0.3);
}

.nd-no-tailwind .bg-surface-background {
  background: #121214;
}
.nd-no-tailwind .bg-surface-card {
  background: #1c1c1e;
}
.nd-no-tailwind .bg-surface-container {
  background: #221e26;
}
.nd-no-tailwind .bg-surface-container\/70 {
  background: rgba(34, 30, 38, 0.7);
}
.nd-no-tailwind .bg-surface-container-low {
  background: #1e1a22;
}
.nd-no-tailwind .bg-surface-container-low\/60 {
  background: rgba(30, 26, 34, 0.6);
}
.nd-no-tailwind .bg-surface-container-high {
  background: #2d2830;
}
.nd-no-tailwind .bg-surface-container-highest {
  background: #38333b;
}
.nd-no-tailwind .bg-status-discovery\/5 {
  background: rgba(56, 189, 248, 0.05);
}
.nd-no-tailwind .bg-status-discovery\/10 {
  background: rgba(56, 189, 248, 0.1);
}
.nd-no-tailwind .bg-status-delivered\/5 {
  background: rgba(16, 185, 129, 0.05);
}
.nd-no-tailwind .bg-status-delivered\/10 {
  background: rgba(16, 185, 129, 0.1);
}
.nd-no-tailwind .bg-status-in-progress\/5 {
  background: rgba(245, 158, 11, 0.05);
}
.nd-no-tailwind .bg-status-in-progress\/10 {
  background: rgba(245, 158, 11, 0.1);
}
.nd-no-tailwind .bg-primary\/10 {
  background: rgba(218, 185, 255, 0.1);
}

.nd-no-tailwind .text-on-surface {
  color: #e8e0eb;
}
.nd-no-tailwind .text-on-surface-variant {
  color: #cdc3d4;
}
.nd-no-tailwind .text-primary {
  color: #dab9ff;
}
.nd-no-tailwind .text-status-discovery {
  color: #38bdf8;
}
.nd-no-tailwind .text-status-delivered {
  color: #10b981;
}
.nd-no-tailwind .text-status-in-progress {
  color: #f59e0b;
}

.nd-no-tailwind .text-headline-xl {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
}
.nd-no-tailwind .text-headline-md {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
.nd-no-tailwind .text-body-lg {
  font-size: 18px;
  line-height: 28px;
}
.nd-no-tailwind .text-body-md {
  font-size: 16px;
  line-height: 24px;
}
.nd-no-tailwind .text-body-sm {
  font-size: 14px;
  line-height: 20px;
}
.nd-no-tailwind .text-label-md {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.nd-no-tailwind .text-label-sm {
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
}
.nd-no-tailwind .font-semibold {
  font-weight: 600;
}
.nd-no-tailwind .font-bold {
  font-weight: 700;
}
.nd-no-tailwind .font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.nd-no-tailwind .uppercase {
  text-transform: uppercase;
}
.nd-no-tailwind .leading-5 {
  line-height: 1.25rem;
}

.nd-no-tailwind .shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.nd-no-tailwind .transition-colors {
  transition:
    color 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}
.nd-no-tailwind .hover\:text-on-surface:hover {
  color: #e8e0eb;
}
.nd-no-tailwind .hover\:bg-primary\/10:hover {
  background: rgba(218, 185, 255, 0.1);
}
.nd-no-tailwind .hover\:bg-surface-variant\/20:hover,
.nd-no-tailwind tr.hover\:bg-surface-variant\/20:hover {
  background: rgba(56, 51, 59, 0.2);
}

@media (min-width: 768px) {
  .nd-no-tailwind .md\:grid-cols-\[1\.2fr_1fr_1fr_1fr\] {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .nd-no-tailwind .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nd-no-tailwind .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .nd-no-tailwind .xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
