/* 전체 대시보드 버튼 텍스트 줄바꿈(세로 쌓임) 방지
 * 상단 액션 버튼과 지도 필터(브랜드/연령대) 버튼의 한글이
 * 좁은 폭에서 글자 단위로 두 줄씩 접히는 문제만 정리한다. 레이아웃·디자인은 유지. */

/* 지도 필터: 버튼 안 글자는 접지 않고, 자리가 부족하면 그룹째 다음 줄로 */
.map-header > div:first-child { min-width: 0; }
.map-filters { flex-wrap: wrap; justify-content: flex-end; flex-shrink: 0; }
.brand-control button,
.segment-control button {
  white-space: nowrap;
  word-break: keep-all;
}

/* 상단 액션 버튼: 라벨 한 줄 유지 */
.top-actions .data-freshness-button,
.top-actions .ghost-button,
.top-actions .logout-button { white-space: nowrap; }
.data-freshness-button strong,
.data-freshness-button span,
.logout-button .logout-label,
.logout-button .signed-in-user { white-space: nowrap; }
