/* Page-specific styling. Anything reusable belongs in it34-theme.css. */

body {
  background-color: #f7f9fa;
}

.result-table-wrapper {
  overflow-x: auto;
  max-height: 60vh;
  border: 1px solid var(--bs-border-color);
  border-radius: 4px;
}

.result-table-wrapper table {
  margin-bottom: 0;
  font-size: 0.875rem;
  white-space: nowrap;
}

.result-table-wrapper thead th {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

/* The generated SQL is never hidden behind a click by default: a user whose work is
   legally binding must see what was actually run. */
.sql-panel pre {
  background: #0f172a;
  color: #e2e8f0;
  padding: 1rem;
  border-radius: 4px;
  overflow-x: auto;
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.freshness-badge {
  font-size: 0.8125rem;
  line-height: 1.3;
  text-align: right;
}

.freshness-dot {
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  margin-right: 0.35rem;
}

.freshness-groen { background-color: var(--it34-success, #429946); }
.freshness-gul   { background-color: var(--it34-warning, #e6942e); }
.freshness-roed  { background-color: var(--it34-danger,  #b30000); }
.freshness-ukendt{ background-color: #9aa0a6; }

.example-chip {
  cursor: pointer;
}
