/* Psychrometric Chart — Page Overrides */

.psych-chart-wrap {
  margin: var(--space-5) 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: var(--space-4);
}

.psych-chart-caption {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: var(--space-3);
  font-style: italic;
}

/* State points table */
.psych-state-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.psych-state-table th {
  text-align: left;
  padding: 6px 8px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-3);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.psych-state-table td {
  padding: 6px 8px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-2);
  font-variant-numeric: tabular-nums;
}

.psych-state-table tr:nth-child(even) td {
  background: rgba(255,255,255,0.015);
}

.psych-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.psych-dot-sm {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}

.psych-remove-btn {
  background: none;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  font-size: 1rem;
  padding: 2px 6px;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.15s, color 0.15s;
}
.psych-remove-btn:hover {
  opacity: 1;
  color: #e07a5f;
}

/* Process summary */
.psych-summary-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: var(--space-4);
}

.psych-process-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.85rem;
  color: var(--text-2);
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 40em) {
  .psych-state-table { font-size: 0.78rem; }
  .psych-state-table th,
  .psych-state-table td { padding: 4px 5px; }
  .psych-process-row { font-size: 0.78rem; }
  .psych-process-row span:last-child { margin-left: 0; width: 100%; padding-left: 14px; }
}
