/* weather.html only -- style.css/globe.css carry the shared theme, panels, switch,
   tile-grid and globe chrome unmodified. This adds just the init-card selection state
   and the existing-runs list rows. */

.tile.selectable { cursor: pointer; border-color: var(--border); transition: border-color 0.15s; }
.tile.selectable:hover { border-color: var(--accent-dim); }
.tile.selected { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.tile .cap .init-date { color: var(--text-faint); display: block; margin-top: 2px; }
.tile .cap .init-value { color: var(--ok); display: block; margin-top: 2px; }

#existing-list li .status { color: var(--text-dim); font-size: 0.8rem; }
#existing-list li .status.finished { color: var(--ok); }
#existing-list li .status.crashed { color: var(--warn-text); }
