.magnitude-scale {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 16px 0;
  flex-wrap: wrap;
}

.mag-dot {
  border-radius: 50%;
  background: #e8e4c0;
  flex-shrink: 0;
}

.mag-scale-label {
  font-size: 11px;
  color: var(--text3);
  margin-left: 8px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.comparison-table th {
  text-align: left;
  padding: 8px 12px;
  color: var(--text3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
}

.comparison-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(42,48,96,0.5);
  color: var(--text2);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  color: var(--white);
  font-weight: 500;
}

.mag-result-highlight {
  background: linear-gradient(135deg, rgba(91,141,238,0.1), rgba(167,139,250,0.1));
  border: 1px solid rgba(91,141,238,0.25);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  margin-top: 16px;
}

.mag-result-highlight .mag-val {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.mag-result-highlight .mag-type {
  font-size: 13px;
  color: var(--text3);
  margin-top: 4px;
}
