/* [project]/src/components/RunsTable/RunsTable.module.css [app-client] (css) */
.RunsTable-module__qkTtdW__tableWrap {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--surface-1);
  overflow-x: auto;
}

.RunsTable-module__qkTtdW__table {
  border-collapse: collapse;
  width: 100%;
  font-size: var(--text-sm);
}

.RunsTable-module__qkTtdW__table thead th {
  text-align: left;
  padding: var(--space-3) var(--space-4);
  color: var(--text-muted);
  font-weight: var(--weight-medium);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--border-subtle);
  white-space: nowrap;
}

.RunsTable-module__qkTtdW__row {
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
}

.RunsTable-module__qkTtdW__row:hover, .RunsTable-module__qkTtdW__row:focus-visible {
  background: var(--surface-2);
  outline: none;
}

.RunsTable-module__qkTtdW__row:focus-visible {
  box-shadow: inset 0 0 0 2px var(--accent-ring);
}

.RunsTable-module__qkTtdW__table tbody td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}

.RunsTable-module__qkTtdW__table tbody tr:last-child td {
  border-bottom: none;
}

.RunsTable-module__qkTtdW__workflow {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.RunsTable-module__qkTtdW__title {
  color: var(--text-primary);
  font-weight: var(--weight-medium);
}

.RunsTable-module__qkTtdW__runId {
  color: var(--text-muted);
  font-size: var(--text-xs);
  font-family: var(--font-mono);
}

.RunsTable-module__qkTtdW__muted {
  color: var(--text-secondary);
  white-space: nowrap;
}

.RunsTable-module__qkTtdW__progress {
  align-items: baseline;
  gap: var(--space-2);
  display: inline-flex;
}

.RunsTable-module__qkTtdW__step {
  color: var(--text-secondary);
}

.RunsTable-module__qkTtdW__pct {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
}


/* [project]/src/components/DataCatalog/AoiMapModal.module.css [app-client] (css) */
.AoiMapModal-module__gAqmQq__backdrop {
  z-index: var(--z-modal, 1000);
  padding: var(--space-4);
  background: var(--overlay);
  backdrop-filter: blur(2px);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.AoiMapModal-module__gAqmQq__modal {
  gap: var(--space-3);
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border-strong);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--glass-blur-strong)) saturate(var(--glass-saturate));
  box-shadow: var(--glass-shadow-strong);
  flex-direction: column;
  width: min(88vmin, 720px);
  display: flex;
}

.AoiMapModal-module__gAqmQq__heading {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin: 0;
}

.AoiMapModal-module__gAqmQq__mapArea {
  aspect-ratio: 1;
  width: 100%;
  min-height: 320px;
}

.AoiMapModal-module__gAqmQq__mapArea > * {
  height: 100%;
}

.AoiMapModal-module__gAqmQq__footer {
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  display: flex;
}

.AoiMapModal-module__gAqmQq__readout {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.AoiMapModal-module__gAqmQq__actions {
  gap: var(--space-2);
  flex-shrink: 0;
  display: flex;
}

.AoiMapModal-module__gAqmQq__modes {
  gap: 4px;
  margin-bottom: 8px;
  display: flex;
}


/* [project]/src/components/DataCatalog/DiscoverMap.module.css [app-client] (css) */
.DiscoverMap-module__V0SSLa__wrap {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  height: 100%;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.DiscoverMap-module__V0SSLa__map {
  background: var(--surface-3);
  width: 100%;
  height: 100%;
}

.DiscoverMap-module__V0SSLa__toolbar {
  top: var(--space-3);
  left: var(--space-3);
  gap: var(--space-2);
  display: flex;
  position: absolute;
}

.DiscoverMap-module__V0SSLa__searchArea {
  bottom: var(--space-3);
  padding: var(--space-1) var(--space-4);
  border: 1px solid var(--glass-border-strong, var(--border-strong));
  border-radius: var(--radius-full);
  background: var(--glass-bg-strong, var(--surface-2));
  backdrop-filter: blur(var(--glass-blur, 14px));
  box-shadow: var(--shadow-2);
  color: var(--text-primary);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  cursor: pointer;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.DiscoverMap-module__V0SSLa__searchArea:hover {
  color: var(--support);
  border-color: var(--support);
}


/* [project]/src/components/DataCatalog/MaterializeProgressBar.module.css [app-client] (css) */
.MaterializeProgressBar-module__9GJ3AG__materialize {
  align-items: flex-end;
  gap: var(--space-1);
  flex-direction: column;
  min-width: 220px;
  display: flex;
}

.MaterializeProgressBar-module__9GJ3AG__materializeLabel {
  color: var(--text-muted);
  font-size: var(--text-xs);
  white-space: nowrap;
}

.MaterializeProgressBar-module__9GJ3AG__progressTrack {
  border-radius: var(--radius-full);
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  width: 220px;
  height: 8px;
  overflow: hidden;
}

.MaterializeProgressBar-module__9GJ3AG__progressFill {
  border-radius: var(--radius-full);
  background: var(--accent);
  height: 100%;
  transition: width .3s;
  position: relative;
  overflow: hidden;
}

.MaterializeProgressBar-module__9GJ3AG__progressFill:after {
  content: "";
  background: linear-gradient(100deg, #0000 30%, #ffffff59 50%, #0000 70%);
  animation: 1.6s ease-in-out infinite MaterializeProgressBar-module__9GJ3AG__materializeSheen;
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
}

@media (prefers-reduced-motion: reduce) {
  .MaterializeProgressBar-module__9GJ3AG__progressFill:after {
    animation: none;
  }
}

@keyframes MaterializeProgressBar-module__9GJ3AG__materializeSheen {
  to {
    transform: translateX(100%);
  }
}

.MaterializeProgressBar-module__9GJ3AG__progressIndeterminate {
  width: 40%;
  animation: 1.2s ease-in-out infinite alternate MaterializeProgressBar-module__9GJ3AG__materializeSlide;
}

@keyframes MaterializeProgressBar-module__9GJ3AG__materializeSlide {
  from {
    margin-left: 0;
  }

  to {
    margin-left: 60%;
  }
}


/* [project]/src/components/DataCatalog/SaveSearchBar.module.css [app-client] (css) */
.SaveSearchBar-module__ApRA7G__bar, .SaveSearchBar-module__ApRA7G__form {
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  display: flex;
}

.SaveSearchBar-module__ApRA7G__select {
  height: 32px;
  padding: 0 var(--space-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface-1);
  color: var(--text-primary);
  font-size: var(--text-sm);
}

.SaveSearchBar-module__ApRA7G__name {
  flex: 1;
  min-width: 240px;
}

.SaveSearchBar-module__ApRA7G__done {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.SaveSearchBar-module__ApRA7G__error {
  font-size: var(--text-sm);
  color: var(--danger);
}


/* [project]/src/components/DataCatalog/DataCatalog.module.css [app-client] (css) */
.DataCatalog-module__AgLW7W__catalog {
  gap: var(--space-5);
  flex-direction: column;
  display: flex;
}

.DataCatalog-module__AgLW7W__split {
  gap: var(--space-4);
  grid-template-columns: 440px 1fr;
  align-items: stretch;
  height: calc(100dvh - 280px);
  min-height: 480px;
  display: grid;
}

.DataCatalog-module__AgLW7W__split .DataCatalog-module__AgLW7W__leftPane {
  min-width: 0;
  max-height: 100%;
  padding-right: var(--space-1);
  overflow-y: auto;
}

@media (width <= 960px) {
  .DataCatalog-module__AgLW7W__split {
    grid-template-columns: 1fr;
    height: auto;
  }

  .DataCatalog-module__AgLW7W__split .DataCatalog-module__AgLW7W__leftPane {
    max-height: none;
  }
}

.DataCatalog-module__AgLW7W__leftPane {
  gap: var(--space-5);
  flex-direction: column;
  display: flex;
}

.DataCatalog-module__AgLW7W__cardLinked {
  border-color: var(--support);
  box-shadow: 0 0 0 1px var(--support);
}

.DataCatalog-module__AgLW7W__controls {
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--surface-1);
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: end;
  display: grid;
}

.DataCatalog-module__AgLW7W__field {
  gap: var(--space-1);
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.DataCatalog-module__AgLW7W__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.DataCatalog-module__AgLW7W__select {
  height: 38px;
  padding: 0 var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-primary);
  font-size: var(--text-sm);
}

.DataCatalog-module__AgLW7W__invalid {
  border-color: var(--danger);
}

.DataCatalog-module__AgLW7W__discover {
  align-self: end;
}

.DataCatalog-module__AgLW7W__aoiRow {
  gap: var(--space-2);
  align-items: center;
  display: flex;
}

.DataCatalog-module__AgLW7W__aoiInput {
  flex: 1;
  min-width: 0;
}

.DataCatalog-module__AgLW7W__gotBadge {
  color: var(--success);
  font-size: var(--text-card-sm);
  font-weight: var(--weight-medium);
  white-space: nowrap;
}

.DataCatalog-module__AgLW7W__results {
  gap: var(--space-2);
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.DataCatalog-module__AgLW7W__product {
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface-1);
  display: flex;
}

.DataCatalog-module__AgLW7W__productMain {
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.DataCatalog-module__AgLW7W__productTitle {
  color: var(--text-primary);
  font-weight: var(--weight-medium);
  font-size: var(--text-card-sm);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.DataCatalog-module__AgLW7W__productMeta {
  font-size: var(--text-card-base);
  color: var(--text-muted);
  font-weight: var(--weight-regular, 400);
}

.DataCatalog-module__AgLW7W__assetId {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: var(--text-card-xs);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.DataCatalog-module__AgLW7W__state {
  min-height: 200px;
  color: var(--text-muted);
  text-align: center;
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  justify-content: center;
  align-items: center;
  display: flex;
}

.DataCatalog-module__AgLW7W__error {
  color: var(--danger);
  font-size: var(--text-sm);
  margin: 0;
}

.DataCatalog-module__AgLW7W__grid {
  gap: var(--space-3);
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.DataCatalog-module__AgLW7W__card {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--surface-1);
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.DataCatalog-module__AgLW7W__cardThumb {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--surface-2);
  height: 150px;
  position: relative;
  overflow: hidden;
}

.DataCatalog-module__AgLW7W__cardImage {
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  width: 100%;
  height: 150px;
  display: block;
}

.DataCatalog-module__AgLW7W__cardNoImage {
  height: 100%;
  color: var(--text-muted);
  font-size: var(--text-card-xs);
  justify-content: center;
  align-items: center;
  display: flex;
}

.DataCatalog-module__AgLW7W__cardBody {
  padding: var(--space-3);
  flex-direction: column;
  flex: 1;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.DataCatalog-module__AgLW7W__cardFooter {
  padding: 0 var(--space-3) var(--space-3);
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.DataCatalog-module__AgLW7W__assistFilled {
  box-shadow: 0 0 0 2px var(--support), 0 0 12px var(--support-soft);
  transition: box-shadow .4s;
}


/* [project]/src/components/RunLaunch/SourcePicker.module.css [app-client] (css) */
.SourcePicker-module__WVS4HG__picker {
  gap: var(--space-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  background: var(--surface-2);
  flex-direction: column;
  display: flex;
}

.SourcePicker-module__WVS4HG__selection {
  align-items: baseline;
  gap: var(--space-2);
  min-height: 20px;
  display: flex;
}

.SourcePicker-module__WVS4HG__selectionLabel {
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  color: var(--text-primary);
  flex: auto;
  min-width: 0;
}

.SourcePicker-module__WVS4HG__selectionNone {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.SourcePicker-module__WVS4HG__selectionUri {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}

.SourcePicker-module__WVS4HG__clearBtn {
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  font-size: var(--text-sm);
  cursor: pointer;
  background: none;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  line-height: 1;
  display: inline-flex;
}

.SourcePicker-module__WVS4HG__clearBtn:hover {
  border-color: var(--danger, #c33);
  color: var(--danger, #c33);
}

.SourcePicker-module__WVS4HG__tabs {
  gap: var(--space-1);
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  display: flex;
}

.SourcePicker-module__WVS4HG__tab {
  appearance: none;
  padding: var(--space-1) var(--space-2);
  font-size: var(--text-sm);
  white-space: nowrap;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 2px solid #0000;
}

.SourcePicker-module__WVS4HG__tab:hover {
  color: var(--text-primary);
}

.SourcePicker-module__WVS4HG__tabActive {
  color: var(--text-primary);
  border-bottom-color: var(--accent);
  font-weight: var(--weight-semibold);
}

.SourcePicker-module__WVS4HG__body {
  min-height: 40px;
}

.SourcePicker-module__WVS4HG__list {
  gap: var(--space-1);
  flex-direction: column;
  max-height: 220px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  overflow-y: auto;
}

.SourcePicker-module__WVS4HG__option {
  appearance: none;
  text-align: left;
  border-radius: var(--radius-sm);
  width: 100%;
  padding: var(--space-1) var(--space-2);
  cursor: pointer;
  background: none;
  border: 1px solid #0000;
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.SourcePicker-module__WVS4HG__option:hover {
  background: var(--surface-3);
}

.SourcePicker-module__WVS4HG__optionSelected {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.SourcePicker-module__WVS4HG__optionLabel {
  font-size: var(--text-sm);
  color: var(--text-primary);
}

.SourcePicker-module__WVS4HG__optionSub {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.SourcePicker-module__WVS4HG__empty {
  color: var(--text-muted);
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-1);
}

.SourcePicker-module__WVS4HG__advanced {
  background: var(--surface-1);
  width: 100%;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-1) var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
}

.SourcePicker-module__WVS4HG__optionNote {
  font-size: var(--text-card-xs, .72rem);
  color: var(--warning, #b45309);
  font-style: italic;
  display: block;
}

.SourcePicker-module__WVS4HG__selectionNote {
  margin-left: var(--space-2, 8px);
  font-size: var(--text-card-xs, .72rem);
  color: var(--warning, #b45309);
  font-style: italic;
  font-weight: var(--weight-regular, 400);
}

.SourcePicker-module__WVS4HG__warning {
  padding: var(--space-1) var(--space-2);
  font-size: var(--text-sm);
  color: var(--warning, #b98900);
  background: color-mix(in srgb, var(--warning, #b98900) 10%, transparent);
  border-radius: var(--radius-md);
  margin: 0;
}

.SourcePicker-module__WVS4HG__groupLabel {
  margin: var(--space-2) 0 var(--space-1);
  font-size: var(--text-xs, 11px);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
}


/* [project]/src/components/RunLaunch/RunLaunchForm.module.css [app-client] (css) */
.RunLaunchForm-module__PtUf9W__form {
  gap: var(--space-4);
  flex-direction: column;
  display: flex;
}

.RunLaunchForm-module__PtUf9W__field {
  gap: var(--space-2);
  flex-direction: column;
  display: flex;
}

.RunLaunchForm-module__PtUf9W__fieldLabel {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
}

.RunLaunchForm-module__PtUf9W__select {
  width: 100%;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-primary);
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  font-family: inherit;
}

.RunLaunchForm-module__PtUf9W__select:focus {
  border-color: var(--accent);
}

.RunLaunchForm-module__PtUf9W__inputs {
  gap: var(--space-3);
  flex-direction: column;
  display: flex;
}

.RunLaunchForm-module__PtUf9W__inputName {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
}

.RunLaunchForm-module__PtUf9W__hint {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.RunLaunchForm-module__PtUf9W__error {
  font-size: var(--text-sm);
  color: var(--danger);
}

.RunLaunchForm-module__PtUf9W__footer {
  justify-content: flex-end;
  gap: var(--space-2);
  margin-top: var(--space-2);
  display: flex;
}


/* [project]/src/app/(studio)/studio/runs/runs.module.css [app-client] (css) */
.runs-module__2wCAoG__state {
  min-height: 240px;
  color: var(--text-muted);
  text-align: center;
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  justify-content: center;
  align-items: center;
  display: flex;
}

.runs-module__2wCAoG__launchOverlay {
  z-index: var(--z-modal);
  padding: 8vh var(--space-4) var(--space-4);
  background: var(--overlay);
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: fixed;
  inset: 0;
  overflow-y: auto;
}

.runs-module__2wCAoG__launchPanel {
  width: min(560px, 100%);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--glass-blur-strong)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border-strong);
  box-shadow: var(--glass-shadow-strong);
}

.runs-module__2wCAoG__launchTitle {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}


/*# sourceMappingURL=src_2e14d09f._.css.map*/