/* AURORA HUNTING PRO — drive.css
   THE DRIVE's own rules: the sign-choice row, the dash row under the pedals,
   and the LIM lamp. The canvas and the pedal bar keep their rules in
   style.css; everything new for the Tourneo dash lives here so it can be
   linked and precached on its own. */

/* The road choice. It sits between the glass and the pedals and only appears
   while the sign is up: three big targets — left, straight on, right — for a
   thumb on a bus. */
.drsign { display: flex; gap: 8px; width: 100%; max-width: 760px; }
.drsign .abtn { flex: 1; padding: 12px 8px; font-size: 18px; touch-action: none;
  background: #0d3f8f; border-color: #3a6fd0; color: #fff; }
.drsign[hidden] { display: none; }

/* The dash row: limiter, radio on/off, and tuning either side of the station. */
.drdash { display: flex; gap: 6px; width: 100%; max-width: 760px; align-items: center; }
.drdash .abtn { padding: 10px 8px; font-size: 13px; touch-action: none; }
.drdash .drstation { flex: 1; text-align: center; font-size: 12px; color: #ffb347;
  font-variant-numeric: tabular-nums; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.drdash .drlim { min-width: 84px; font-family: ui-monospace, monospace; }
.drdash .drlim.on { background: #4a3208; border-color: #ffb347; color: #ffb347; }

@media (max-width: 480px) {
  .drdash .abtn { padding: 10px 6px; font-size: 12px; }
  .drdash .drlim { min-width: 72px; }
}
