/* ── Umlaut-specific styles ── */
.container { max-width: 960px; }

/* Umlaut arrow */
.umlaut-arrow {
  display: inline-block;
  color: var(--accent-fire);
  font-weight: 700;
  margin: 0 0.3em;
  font-family: var(--mono);
}

/* Correspondence table */
.ump-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.8rem 0;
  font-size: 0.88rem;
}
.ump-table th {
  font-weight: 600;
  text-align: left;
  padding: 0.5rem 0.7rem;
  border-bottom: 2px solid var(--border-accent);
  color: var(--accent-ice);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ump-table td {
  padding: 0.45rem 0.7rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.ump-table tr:hover td {
  background: rgba(110,184,215,0.04);
}
.ump-table .from-v {
  font-family: var(--mono);
  color: var(--accent-fire);
  font-weight: 600;
  font-size: 1.05em;
  text-align: center;
  white-space: nowrap;
}
.ump-table .to-v {
  font-family: var(--mono);
  color: var(--accent-green);
  font-weight: 600;
  font-size: 1.05em;
  text-align: center;
  white-space: nowrap;
}
.ump-table .ex-word {
  font-family: var(--mono);
  color: var(--example-word);
  font-weight: 500;
}
.ump-table .ex-arrow {
  color: var(--text-dim);
  margin: 0 0.25em;
}
.ump-table .ex-result {
  font-family: var(--mono);
  color: var(--accent-green);
  font-weight: 600;
}
.ump-table .ex-note {
  color: var(--text-muted);
  font-size: 0.85em;
  font-style: italic;
}

/* Tag colors for this page */
.tag-u { background: rgba(110,184,215,0.15); color: var(--accent-ice); }
.tag-i { background: rgba(212,123,94,0.15);  color: var(--accent-fire); }

/* Inline highlight */
.hl-u {
  color: var(--accent-ice);
  font-weight: 600;
}
.hl-i {
  color: var(--accent-fire);
  font-weight: 600;
}
.hl-result {
  color: var(--accent-green);
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .ump-table { font-size: 0.82rem; }
  .ump-table th, .ump-table td { padding: 0.35rem 0.5rem; }
}
