/* menu.css: full menu by station, ratings, pick mode. */
.station { margin-bottom: 18px; }
.station-name { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 6px; padding-bottom: 4px; border-bottom: 2px solid var(--ink); }
.dishes { list-style: none; margin: 0; padding: 0; }
.dish { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: start; padding: 10px 0; border-bottom: 1px solid var(--line); }
.dish-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.dish-name { font-weight: 600; font-size: 16px; }
.dish.low-conf .dish-name { text-decoration: underline dashed var(--ink-3); text-underline-offset: 4px; }
.dish.never .dish-name { color: var(--ink-3); text-decoration: line-through; }
.dish.picked { background: #EAF4FB; border-radius: 10px; padding-left: 8px; padding-right: 8px; }
.amb { color: var(--ink-3); font-weight: 400; }
.dish-portion { font-family: var(--font-mono); font-size: 12px; color: var(--sky-deep); }
.dish-macros { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); }
.dish-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 3px; }
.tag { font-size: 11px; padding: 1px 7px; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-2); }
.tag.pref { background: #E3F2EA; border-color: #C7E4D3; color: var(--good); }
.tag.allergen { background: #FBE6E1; border-color: #F1CEC6; color: var(--fat); }
.tag.none { color: var(--ink-3); font-style: italic; }

.dish-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.rate { display: inline-flex; gap: 4px; }
.rate button { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; font-size: 15px; cursor: pointer; opacity: .55; }
.rate button.on { opacity: 1; border-color: var(--ink); background: var(--paper); }
.pick-btn { width: 40px; height: 40px; border-radius: 50%; border: 0; background: var(--ink); color: #fff; font-size: 22px; font-weight: 600; cursor: pointer; }

.pick-bar { position: sticky; top: 8px; z-index: 5; display: flex; justify-content: space-between; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 8px 8px 8px 14px; margin-bottom: 12px; box-shadow: 0 4px 14px rgba(20,33,61,.08); font-weight: 600; }
.est-note { text-align: center; margin-top: 10px; }
