/*
 * url-encoder-decoder.css — per-tool styles.
 * Defines the radio-option layout used in the URL / Base64 / IDN panels.
 * Tokens only; no inline styles (CSP: style-src 'self').
 */

/* Radio option row: input aligned to the top of a stacked title + help body. */
.ued-radio {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  cursor: pointer;
}

.ued-radio input {
  margin-top: 3px;
  flex: none;
  accent-color: var(--blue-600);
}

/* Stacked title + help text. min-width:0 lets long help wrap instead of overflowing. */
.ued-radio-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ued-radio-title {
  font: 500 14px/1.4 var(--font-sans);
  color: var(--text-primary);
}

/* Single-line variant (Base64 / IDN mode): title sits inline with the input. */
.ued-radio-inline {
  align-items: center;
}
