/* Stats */
.ov-stats {
  display: grid;
  gap: 10px;
}

.ov-stat {
  background: var(--surface-2);
  border: 0.5px solid var(--border-lt);
  border-radius: var(--radius);
  padding: 10px 14px;
}
.ov-stat-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  margin-bottom: 4px;
}
.ov-stat-val {
  font-size: 22px;
  font-weight: 500;
  font-family: var(--mono);
  color: var(--text);
}
 
/* Sections */
.ov-section-title {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.ov-section-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-3);
}
 
/* Plot placeholder */
.ov-plot-placeholder {
  height: 200px;
  border: 0.5px dashed var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 12px;
}
.ov-plot-placeholder svg { opacity: 0.3; }
 
/* Table */
.ov-table-wrap {
  overflow-x: auto;
  border: 0.5px solid var(--border-lt);
  border-radius: var(--radius);
}
.ov-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}
.ov-table th {
  padding: 6px 10px;
  text-align: left;
  font-weight: 500;
  color: var(--text-2);
  background: var(--surface-2);
  border-bottom: 0.5px solid var(--border);
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 10px;
}
.ov-table td {
  padding: 5px 10px;
  border-bottom: 0.5px solid var(--border-lt);
  font-family: var(--mono);
  color: var(--text);
  white-space: nowrap;
}
.ov-table tr:last-child td { border-bottom: none; }
.ov-table tr:hover td { background: var(--surface-2); }
.ov-idx  { color: var(--text-3); width: 28px; }
.ov-name { font-weight: 500; color: var(--text); min-width: 160px; }