/* [project]/src/styles/Experiments.module.css [client] (css) */
.Experiments-module__p0zGDa__listContainer {
  background-color: var(--card-background);
  border-radius: var(--border-radius);
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 6px #0000001a;
}

.Experiments-module__p0zGDa__listHeader {
  color: var(--foreground);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.Experiments-module__p0zGDa__tableWrapper {
  flex: 1;
  overflow-y: auto;
}

.Experiments-module__p0zGDa__table {
  border-collapse: collapse;
  width: 100%;
}

.Experiments-module__p0zGDa__table th {
  text-align: left;
  background-color: var(--background-start);
  color: var(--foreground-secondary);
  padding: .25rem .5rem;
  font-weight: 600;
  position: sticky;
  top: 0;
}

.Experiments-module__p0zGDa__table td {
  border-bottom: 1px solid var(--border-color);
  color: var(--foreground);
  padding: .25rem .5rem;
  font-size: .8rem;
}

.Experiments-module__p0zGDa__row {
  cursor: pointer;
  transition: background-color .2s;
}

.Experiments-module__p0zGDa__row:hover {
  background-color: #ffffff0d;
}

.Experiments-module__p0zGDa__selected {
  border-left: 3px solid #0070f3;
  background-color: #0070f31a !important;
}

.Experiments-module__p0zGDa__cellName {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100px;
  font-weight: 500;
  overflow: hidden;
}

.Experiments-module__p0zGDa__cellModel {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 60px;
  overflow: hidden;
}

.Experiments-module__p0zGDa__cellDate {
  color: var(--foreground-secondary);
  font-size: .875rem;
}

.Experiments-module__p0zGDa__statusIndicator {
  border-radius: 50%;
  width: .75rem;
  height: .75rem;
  display: inline-block;
}

.Experiments-module__p0zGDa__status_running {
  background-color: #0070f3;
}

.Experiments-module__p0zGDa__status_completed {
  background-color: #4caf50;
}

.Experiments-module__p0zGDa__status_failed {
  background-color: #f44336;
}

.Experiments-module__p0zGDa__status_default {
  background-color: #9e9e9e;
}

.Experiments-module__p0zGDa__detailsContainer {
  background-color: var(--card-background);
  border-radius: var(--border-radius);
  height: 100%;
  padding: 2rem;
  overflow-y: auto;
  box-shadow: 0 4px 6px #0000001a;
}

.Experiments-module__p0zGDa__detailsHeader {
  border-bottom: 1px solid var(--border-color);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  display: flex;
}

.Experiments-module__p0zGDa__detailsTitle {
  margin: 0;
  font-size: 2rem;
}

.Experiments-module__p0zGDa__section {
  margin-bottom: 2rem;
}

.Experiments-module__p0zGDa__sectionTitle {
  color: var(--foreground-secondary);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  font-size: 1.25rem;
  display: inline-block;
}

.Experiments-module__p0zGDa__infoGrid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  display: grid;
}

.Experiments-module__p0zGDa__infoItem label {
  color: var(--foreground-secondary);
  margin-bottom: .25rem;
  font-size: .875rem;
  display: block;
}

.Experiments-module__p0zGDa__infoItem span {
  font-size: 1.125rem;
  font-weight: 500;
}

.Experiments-module__p0zGDa__tags {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.Experiments-module__p0zGDa__tag {
  background-color: #ffffff1a;
  border-radius: 1rem;
  padding: .25rem .75rem;
  font-size: .875rem;
}

.Experiments-module__p0zGDa__metricsGrid {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  display: grid;
}

.Experiments-module__p0zGDa__metricCard {
  text-align: center;
  background-color: #ffffff08;
  border-radius: .5rem;
  padding: 1rem;
}

.Experiments-module__p0zGDa__metricName {
  color: var(--foreground-secondary);
  margin-bottom: .5rem;
  font-size: .875rem;
}

.Experiments-module__p0zGDa__metricValue {
  color: var(--foreground);
  font-size: 1.5rem;
  font-weight: 700;
}

.Experiments-module__p0zGDa__evaluationsPre {
  background-color: #0000004d;
  border-radius: .5rem;
  padding: 1rem;
  font-family: monospace;
  font-size: .875rem;
  overflow-x: auto;
}

.Experiments-module__p0zGDa__emptyState {
  height: 100%;
  color: var(--foreground-secondary);
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  display: flex;
}

.Experiments-module__p0zGDa__loading, .Experiments-module__p0zGDa__error {
  text-align: center;
  color: var(--foreground-secondary);
  padding: 2rem;
}

.Experiments-module__p0zGDa__pageContainer {
  gap: 1.5rem;
  height: calc(100vh - 64px);
  padding: 1.5rem;
  display: flex;
}

.Experiments-module__p0zGDa__sidebar {
  flex-shrink: 0;
  width: 400px;
}

.Experiments-module__p0zGDa__mainContent {
  flex: 1;
  min-width: 0;
}

@media (max-width: 1024px) {
  .Experiments-module__p0zGDa__pageContainer {
    flex-direction: column;
    height: auto;
  }

  .Experiments-module__p0zGDa__sidebar {
    width: 100%;
    height: 400px;
  }
}

.Experiments-module__p0zGDa__tableLink {
  color: #0070f3;
  font-weight: 500;
  text-decoration: none;
}

.Experiments-module__p0zGDa__tableLink:hover {
  text-decoration: underline;
}

.Experiments-module__p0zGDa__experimentStatus {
  text-transform: uppercase;
  border-radius: 9999px;
  padding: .25rem .75rem;
  font-size: .875rem;
  font-weight: 600;
  display: inline-block;
}

.Experiments-module__p0zGDa__experimentStatus_running {
  color: #0070f3;
  background-color: #0070f333;
}

.Experiments-module__p0zGDa__experimentStatus_completed {
  color: #4caf50;
  background-color: #4caf5033;
}

.Experiments-module__p0zGDa__experimentStatus_failed {
  color: #f44336;
  background-color: #f4433633;
}

.Experiments-module__p0zGDa__experimentStatus_default {
  color: #9e9e9e;
  background-color: #9e9e9e33;
}

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