/*
 * DOMAINS / THIRD-PARTY
 * =====================
 * Helper classes used by the per-domain breakdown table and the
 * expandable third-party rows.
 */

.no-break {
  word-break: keep-all;
}

/* Disclosure arrows on collapsible domain rows. */
.right,
.down {
  display: inline-block;
  width: 0.65em;
  height: 0.65em;
  border-right: 2px solid var(--color-text-secondary);
  border-bottom: 2px solid var(--color-text-secondary);
  margin-right: 6px;
  transition: transform var(--motion-fast);
}

.right { transform: rotate(-45deg); }
.down  { transform: rotate(45deg); }
