    * { box-sizing: border-box; }
    /* 2026-05-01: Map 改用 product-header partial 跟 List/Calendar 对齐。删自定义 .header,
       body flex column layout: product-header (.logo-row) + .filters + #map(flex:1) 占满屏 */
    /* 2026-05-01 v3: 改用 CSS Grid 替代 flex column。lawyu 截图发现全屏 Chrome 下
       hover/click 触发 flex layout reflow,#map (flex:1) 抢占 logo-row 区域。
       Grid 的 row sizing (auto auto 1fr) 行为更稳定,fixed-size row 不会被 1fr row 挤压。
       (半屏 chrome / DevTools 占部分宽度不触发,纯宽度依赖的 flex bug) */
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      background: #f8fafc;
      margin: 0;
      padding: 8px 24px 0;
      display: grid;
      grid-template-rows: auto auto 1fr;
      grid-template-columns: 100%;
      height: 100vh;
      overflow: hidden;
    }
    /* product-header partial 内的 fixed 子元素(toast/modal-backdrop)用 fixed 定位,
       不参与 grid layout。logo-row 是唯一参与 grid 的 product-header 内容 */
    .logo-row {
      position: relative;
      z-index: 10;
      grid-row: 1;
    }
    .map-filter-shell {
      grid-row: 2;
      position: relative;
      z-index: 10;
    }
    .map-filter-shell .filters {
      display: flex; gap: 10px; align-items: center; flex-wrap: nowrap;
      padding: 10px 12px;
      margin-bottom: 8px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
      position: relative;
      z-index: 10;
    }
    .map-filter-shell .brand-row {
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .map-filter-shell .sub-brand-filter {
      margin-bottom: 8px;
    }
    .filters-left {
      display: flex; gap: 10px; align-items: center;
      flex: 1 1 auto; min-width: 0; flex-wrap: nowrap;
    }
    .filters-right {
      margin-left: auto;
      display: inline-flex; gap: 8px; align-items: center;
      flex: 0 0 auto;
    }
    /* view-toggle Calendar/List/Map 复用 List 的视觉规则 */
    .view-toggle {
      display: inline-flex; align-items: center; justify-content: center;
      height: 40px;
      border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden;
      background: #fff; flex: 0 0 auto;
    }
    .cal-btn, .view-btn, .map-btn {
      width: 44px; height: 40px; padding: 0;
      border: none; background: #fff;
      border-radius: 0; font-size: 13px; font-weight: 600;
      cursor: pointer; transition: all 0.15s;
      display: inline-flex; align-items: center; justify-content: center;
    }
    .cal-btn { color: #ef4444; }
    .view-btn { color: #111827; }
    .map-btn { color: #16a34a; }
    .cal-btn:hover { background: #fff1f2; }
    .view-btn:hover { background: #f3f4f6; }
    .map-btn:hover { background: #f0fdf4; }
    .map-btn.active { background: #16a34a; color: #fff; }
    .view-toggle .view-btn + .cal-btn,
    .view-toggle .cal-btn + .view-btn,
    .view-toggle .cal-btn + .map-btn,
    .view-toggle .view-btn + .map-btn { border-left: 1px solid #e5e7eb; }
    /* data-filter-btn / cpp-rank-btn / alerts-btn / wallet-btn 完全继承
       List index/styles.css 的尺寸字体(h 42px / padding 0 12-14 / font 14px /
       alerts/wallet/cpp min-width 110px),不再 override */
    select {
      padding: 6px 10px; border: 1px solid #e5e7eb;
      border-radius: 6px; font-size: 13px; background: #fff;
    }
    .toggle-group {
      display: flex; border: 1px solid #e5e7eb; border-radius: 6px; overflow: hidden;
      /* override shared/header.css 的 height: 40px for the compact embed metric control */
      height: auto;
    }
	    .toggle-btn {
	      padding: 6px 12px; border: none; background: #fff;
	      font-size: 12px; cursor: pointer; color: #6b7280;
	    }
	    .toggle-btn:not(:last-child) { border-right: 1px solid #e5e7eb; }
	    .toggle-btn.active { background: #3b82f6; color: #fff; }
	    #map {
	      grid-row: 3;
	      min-height: 0;  /* grid 1fr row 必需,防 content overflow */
	      width: 100%;
	      border-radius: 16px 16px 0 0;
	      overflow: hidden;
	      position: relative;
	      z-index: 1;  /* 低于 .logo-row 和 .filters,防 leaflet pane 覆盖到顶部区 */
	    }
    .price-marker {
      background: #1e3a8a; color: #fff; padding: 6px 10px;
      border-radius: 6px; font-size: 11px;
      white-space: nowrap; box-shadow: 0 2px 8px rgba(0,0,0,0.3);
      border: 2px solid #fff; text-align: center;
      box-sizing: border-box;
      width: 140px;
      max-width: 140px;
    }
    .price-marker .name {
      display: block;
      max-width: 100%;
      font-weight: 600; font-size: 10px; opacity: 0.96;
      overflow: hidden; text-overflow: ellipsis;
      margin-bottom: 2px;
    }
    .price-marker .price {
      display: block;
      font-weight: 700; font-size: 13px;
      color: #fde68a;
      overflow: hidden; text-overflow: ellipsis;
    }
    .price-marker.Hyatt { background: #374151; }
    .price-marker.Marriott { background: #ef4444; }
    .price-marker.Hilton { background: #3b82f6; }
    .price-marker.IHG { background: #10b981; }
    .hotel-popup {
      min-width: 200px;
    }
    .hotel-popup h3 {
      font-size: 14px; font-weight: 600; margin: 0 0 8px;
      color: #111;
    }
    .hotel-popup .brand-tag {
      display: inline-block; padding: 2px 6px; border-radius: 4px;
      font-size: 10px; font-weight: 600; color: #fff; margin-bottom: 8px;
    }
    .hotel-popup .brand-tag.Hyatt { background: #10b981; }
    .hotel-popup .brand-tag.Marriott { background: #ef4444; }
    .hotel-popup .brand-tag.Hilton { background: #3b82f6; }
    .hotel-popup .brand-tag.IHG { background: #8b5cf6; }
    .hotel-popup .price-row {
      display: flex; justify-content: space-between; padding: 4px 0;
      border-bottom: 1px solid #f3f4f6; font-size: 13px;
    }
    .hotel-popup .price-row:last-child { border-bottom: none; }
    .hotel-popup .label { color: #6b7280; }
    .hotel-popup .value { font-weight: 600; color: #111; }
    .hotel-popup .cpp { color: #f59e0b; }
    .maison-city-action-leaflet-popup .leaflet-popup-content-wrapper {
      border-radius: 14px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow: 0 14px 36px rgba(15, 23, 42, 0.18);
    }
    .maison-city-action-leaflet-popup .leaflet-popup-content {
      margin: 14px;
      min-width: 214px;
    }
    .maison-city-action-leaflet-popup .leaflet-popup-tip {
      box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
    }
    .maison-city-action-leaflet-popup .leaflet-popup-close-button {
      color: #64748b;
      font-size: 22px;
      top: 10px;
      right: 12px;
    }
    .city-action-popup {
      display: flex;
      flex-direction: column;
      gap: 10px;
      color: #111827;
      font-size: 13px;
    }
    .city-action-title {
      font-weight: 800;
      font-size: 16px;
      line-height: 1.2;
      padding-right: 22px;
    }
    .city-action-meta {
      color: #475569;
      font-size: 12px;
      font-weight: 650;
      letter-spacing: 0;
    }
    .city-action-buttons {
      display: grid;
      grid-template-columns: 1fr;
      gap: 6px;
    }
    .city-action-btn {
      height: 34px;
      border: 1px solid #d9e0ea;
      border-radius: 9px;
      background: #fff;
      color: #293548;
      font-size: 12px;
      font-weight: 750;
      cursor: pointer;
      box-shadow: 0 1px 1px rgba(15, 23, 42, 0.04);
    }
    .city-action-btn:hover {
      border-color: #b8c3d3;
      background: #f8fafc;
    }
    .city-action-btn.primary {
      border-color: #16a34a;
      background: linear-gradient(180deg, #18b05a 0%, #149746 100%);
      color: #fff;
      box-shadow: 0 4px 10px rgba(22, 163, 74, 0.24);
    }
    .city-action-btn.primary:hover {
      background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
      border-color: #15803d;
    }
    .stats {
      position: fixed; bottom: 20px; left: 20px; z-index: 1000;
      background: #fff; padding: 10px 16px; border-radius: 8px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.15); font-size: 13px;
    }
    .stats span { color: #6b7280; }
    .stats strong { color: #111; margin-left: 4px; }
    .loading {
      position: absolute;
      inset: 0;
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(248, 250, 252, 0.48);
      backdrop-filter: blur(2px);
      font-size: 14px;
      pointer-events: none;
    }
    .loading.hidden { display: none !important; }
    .map-loading-card {
      min-width: 260px;
      max-width: min(360px, calc(100vw - 48px));
      border: 1px solid rgba(226, 232, 240, 0.95);
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
      border-radius: 12px;
      padding: 16px 18px 14px;
      display: grid;
      grid-template-columns: 32px 1fr;
      gap: 10px 12px;
      align-items: center;
    }
    .map-loading-spinner {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      border: 3px solid #dbeafe;
      border-top-color: #2563eb;
      animation: mapSpin 0.85s linear infinite;
    }
    .map-loading-title {
      color: #111827;
      font-weight: 800;
      line-height: 1.2;
    }
    .map-loading-stage {
      margin-top: 3px;
      color: #64748b;
      font-size: 12px;
      font-weight: 600;
    }
    .map-loading-bar {
      grid-column: 1 / -1;
      height: 3px;
      overflow: hidden;
      border-radius: 999px;
      background: #e2e8f0;
    }
    .map-loading-bar span {
      display: block;
      width: 38%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, #16a34a, #2563eb);
      animation: mapLoadingBar 1.15s ease-in-out infinite;
    }
    @keyframes mapSpin {
      to { transform: rotate(360deg); }
    }
    @keyframes mapLoadingBar {
      0% { transform: translateX(-110%); }
      100% { transform: translateX(280%); }
    }
    /* 城市聚合圆点 */
    .city-marker {
      background: #374151; color: #fff;
      border-radius: 50%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
      border: 3px solid #fff;
      font-weight: 600;
      transition: transform 0.2s;
    }
    .city-marker:hover { transform: scale(1.1); }
    .city-marker .city-name {
      font-size: 10px; white-space: nowrap;
      max-width: 80px; overflow: hidden; text-overflow: ellipsis;
    }
    .city-marker .hotel-count {
      font-size: 14px; font-weight: 700;
    }
    /* 未覆盖城市 (灰色虚线) */
    .city-marker.uncovered {
      background: transparent;
      border: 2px dashed #9ca3af;
      color: #9ca3af;
    }
    /* 城市详情弹窗 */
    .city-popup { min-width: 180px; }
    .city-popup h3 { font-size: 15px; font-weight: 600; margin: 0 0 10px; }
    .city-popup .brand-coverage {
      display: flex; gap: 4px; margin-bottom: 8px; flex-wrap: wrap;
    }
    .city-popup .brand-dot {
      width: 8px; height: 8px; border-radius: 50%;
    }
    .city-popup .brand-dot.Hyatt { background: #10b981; }
    .city-popup .brand-dot.Marriott { background: #ef4444; }
    .city-popup .brand-dot.Hilton { background: #3b82f6; }
    .city-popup .brand-dot.IHG { background: #8b5cf6; }
    .city-popup .brand-dot.missing { background: #e5e7eb; }
    .city-popup .info-row {
      font-size: 12px; color: #6b7280; margin: 4px 0;
    }
    .city-popup .info-row strong { color: #111; }
    .overview-scope-ctl {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
      margin-left: auto;
      height: 34px;
      border: 1px solid #e5e7eb;
      border-radius: 10px;
      overflow: hidden;
      background: #fff;
    }
    .overview-scope-ctl.hidden { display: none; }
    .overview-scope-btn {
      height: 34px;
      padding: 0 11px;
      border: 0;
      border-radius: 0;
      background: #fff;
      color: #475569;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
    }
    .overview-scope-btn + .overview-scope-btn { border-left: 1px solid #e5e7eb; }
    .overview-scope-btn:hover { background: #f8fafc; }
    .overview-scope-btn.active {
      background: #111827;
      color: #fff;
    }
    .scope-label-short { display: none; }
    .scope-label-full { display: inline; }
    .map-ctl-btn {
      height: 34px;
      padding: 0 12px;
      border: 1px solid #e5e7eb;
      border-radius: 10px;
      background: #fff;
      color: #111827;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
    }
    .map-ctl-btn:hover { background: #f3f4f6; }
    .map-fit-btn {
      width: 34px;
      padding: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }
    .maison-leaflet-fit-control {
      margin-top: 6px;
    }
    .maison-leaflet-fit-btn {
      width: 34px;
      height: 34px;
      padding: 0;
      border: 0;
      background: #fff;
      color: #111827;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .maison-leaflet-fit-btn:hover {
      background: #f3f4f6;
    }
    .maison-leaflet-fit-btn:focus-visible {
      outline: 2px solid #2563eb;
      outline-offset: 2px;
    }
    .destination-bubble-wrapper {
      cursor: pointer;
    }
    .destination-bubble {
      min-width: 72px;
      max-width: 112px;
      min-height: 30px;
      padding: 4px 8px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.94);
      color: #111827;
      border: 1px solid rgba(203, 213, 225, 0.9);
      box-shadow: 0 3px 10px rgba(15, 23, 42, 0.16);
      text-align: center;
      transform: translateZ(0);
      transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
    }
    .destination-bubble:hover {
      background: #fff;
      box-shadow: 0 8px 18px rgba(15, 23, 42, 0.22);
      transform: translateY(-1px);
    }
    .destination-city {
      max-width: 92px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-size: 11px;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: 0;
    }
    .destination-meta {
      margin-top: 2px;
      color: #64748b;
      font-size: 9px;
      font-weight: 700;
      line-height: 1.1;
      white-space: nowrap;
    }
    /* 城市标签（热力图模式） */
    .city-label {
      background: rgba(255,255,255,0.9);
      padding: 4px 10px;
      border-radius: 12px;
      font-size: 12px;
      font-weight: 600;
      color: #374151;
      white-space: nowrap;
      box-shadow: 0 1px 4px rgba(0,0,0,0.2);
      text-align: center;
    }
    .city-label-wrapper { cursor: pointer; }
	    .city-label span {
	      font-weight: 400;
	      color: #6b7280;
	    }

		    /* Embedded mode (used by / viewer List/Map toggle) */
		    /* iframe 嵌入时 List 主页有自己的 header / filter,Map 隐藏 product-header
		       (logo-row) + .filters + 所有 modal,只显示纯地图 */
		    body.embed {
		      padding: 0;
		      grid-template-rows: minmax(0, 1fr);
		    }
		    body.embed .logo-row,
		    body.embed .map-filter-shell,
		    body.embed .stats,
		    body.embed .drawer-backdrop,
		    body.embed .modal-backdrop,
		    body.embed .account-backdrop { display: none; }
		    body.embed #map {
		      grid-row: 1;
		      border-radius: 0;
		    }
			    .embed-ctl {
			      display: none;
			      position: fixed;
			      top: 14px;
		      right: 14px;
		      z-index: 1500;
		      background: rgba(255, 255, 255, 0.92);
		      border: 1px solid #e5e7eb;
		      border-radius: 12px;
		      padding: 8px;
		      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
			      gap: 8px;
			      align-items: center;
			    }
			    body.embed .embed-ctl { display: inline-flex; }
			    .embed-ctl .toggle-group { height: 32px; border-radius: 9px; }
			    .embed-ctl .toggle-btn { padding: 0 9px; font-size: 12px; }
			    .embed-ctl .embed-btn {
		      height: 32px;
		      padding: 0 10px;
		      border: 1px solid #e5e7eb;
		      border-radius: 9px;
		      background: #fff;
		      cursor: pointer;
		      font-size: 12px;
		      color: #111827;
		    }
		    .embed-ctl .embed-fit-btn {
		      width: 32px;
		      padding: 0;
		      display: inline-flex;
		      align-items: center;
		      justify-content: center;
		      border-radius: 50%;
		    }
		    .embed-ctl .embed-btn:hover { background: #f3f4f6; }
		    @media (max-width: 720px) {
		      .embed-ctl {
		        top: auto;
		        right: 10px;
		        bottom: calc(env(safe-area-inset-bottom, 0px) + 10px);
		        padding: 7px;
		        gap: 7px;
		      }
		      .embed-ctl .toggle-group,
		      .embed-ctl .embed-btn { height: 32px; }
		      .embed-ctl .toggle-btn { padding: 0 8px; }
		    }

    /* 移动端响应式 */
    @media (max-width: 720px) {
      body {
        padding: 6px 8px 0;
        height: 100dvh;
        grid-template-rows: auto auto minmax(0, 1fr);
      }
      .logo-row {
        align-items: center;
        margin-bottom: 4px;
      }
      .logo-row-left {
        align-items: center;
      }
      .brand-logo-img {
        height: 38px;
      }
      .map-slogan-group {
        margin-top: 0;
        margin-left: 8px;
        align-items: center;
      }
      .map-slogan {
        font-size: 13px;
      }
      .map-slogan-icon img {
        height: 22px;
        margin-bottom: -2px;
      }
      .logo-row-right {
        margin-top: 0;
        gap: 4px;
      }
      .account-area {
        gap: 4px;
        padding: 2px;
      }
      .account-avatar {
        width: 30px;
        height: 30px;
        font-size: 13px;
      }
      .account-area-name,
      .account-plan-chip { display: none !important; }
      .map-filter-shell .filters {
        display: grid;
        grid-template-columns: repeat(8, minmax(0, 1fr));
        gap: 6px;
        padding: 7px;
        margin-bottom: 6px;
        border-radius: 12px;
        align-items: center;
      }
      .filters-left,
      .filters-right { display: contents; }
      .search-wrap {
        order: 1;
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
        max-width: none;
        height: 34px;
      }
      .search-wrap #search {
        height: 34px;
      }
      .country-wrap {
        order: 2;
        grid-column: 1 / span 2;
        min-width: 0;
        height: 34px;
      }
      #country {
        width: 100%;
        min-width: 0;
        max-width: none;
        height: 34px;
        font-size: 11px;
      }
      .city-combo {
        order: 3;
        grid-column: 3 / span 3;
        min-width: 0;
        max-width: none;
      }
      .city-combo-trigger {
        width: 100%;
        min-width: 0;
        height: 34px;
        font-size: 12px;
      }
      .city-combo-panel {
        position: fixed;
        left: 10px;
        right: 10px;
        top: 126px;
        width: auto;
        max-height: min(58vh, 430px);
      }
      .date-wrapper {
        order: 4;
        grid-column: 6 / span 3;
        min-width: 0;
        height: 34px;
      }
      .date-wrapper #date {
        width: 100%;
        min-width: 0;
        height: 34px;
        font-size: 11px;
      }
      .date-wrapper .clear-btn { height: 34px; }
      .view-toggle {
        order: 5;
        grid-column: 1 / span 3;
        height: 34px;
        border-radius: 8px;
      }
      .view-toggle .view-btn,
      .view-toggle .cal-btn,
      .view-toggle .map-btn {
        width: 34px;
        height: 34px;
      }
      .data-filter-wrapper {
        order: 6;
        grid-column: 4 / span 2;
        min-width: 0;
      }
      .data-filter-group {
        height: 34px;
        border-radius: 8px;
      }
      .data-filter-btn {
        height: 34px;
        padding: 0 6px;
        font-size: 0;
        gap: 2px;
      }
      .data-filter-btn .df-icon {
        font-size: 13px;
      }
      #btnCppRank {
        order: 7;
        grid-column: 6;
        min-width: auto;
      }
      .cpp-rank-btn {
        height: 34px;
        padding: 0 8px;
        border-radius: 8px;
      }
      .alerts-btn { order: 8; grid-column: 7; }
      .wallet-btn { order: 9; grid-column: 8; }
      .alerts-btn-label,
      .wallet-btn-label { display: none; }
      .cpp-rank-label { display: none; }
      .cpp-rank-icon { margin-right: 0; }
      .alerts-btn,
      .wallet-btn,
      .cpp-rank-btn {
        height: 34px;
        min-width: auto;
        padding: 0 8px;
        border-radius: 8px;
      }
      .wallet-btn-icon {
        width: 20px;
        height: 20px;
      }
      .alerts-btn,
      .wallet-btn { min-width: auto; }
      select {
        padding: 4px 6px;
        font-size: 12px;
        flex: 1;
        min-width: 0;
      }
      .toggle-btn {
        padding: 4px 8px;
        font-size: 11px;
      }
      .map-filter-shell .brand-row {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        margin-bottom: 8px;
      }
      .map-filter-shell .brand-tabs {
        width: 100%;
        gap: 0;
        flex-wrap: nowrap;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        overflow: hidden;
        background: #fff;
      }
      .map-filter-shell .brand-tab {
        flex: 1 1 0;
        min-width: 0;
        text-align: center;
        padding: 6px 2px;
        font-size: 11px;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.3;
        border: none;
        border-radius: 0;
        border-right: 1px solid #e5e7eb;
      }
      .map-filter-shell .brand-tab:last-of-type { border-right: none; }
      .map-filter-shell .brand-tab .count {
        display: block;
        margin-left: 0;
      }
      .map-filter-shell .sub-brand-collapse-btn {
        flex: 0 0 28px;
        align-self: stretch;
        width: 28px;
        height: auto;
        margin-left: 0;
        padding: 0;
        border: none;
        border-left: 1px solid #e5e7eb;
        border-radius: 0;
        background: #fffbeb;
        box-shadow: none;
        color: #b45309;
        font-size: 11px;
      }
      .map-filter-shell .sub-brand-collapse-btn.collapsed {
        border: none;
        border-left: 1px solid #e5e7eb;
        background: #fffbeb;
        box-shadow: none;
      }
      .map-filter-shell .sub-brand-collapse-btn span { display: none; }
      .map-filter-shell .sub-brand-collapse-btn svg {
        width: 14px;
        height: 14px;
      }
      #map {
        position: relative;
        top: auto;
        min-height: 0;
        border-radius: 12px 12px 0 0;
      }
      .stats {
        bottom: 10px;
        left: 10px;
        padding: 6px 10px;
        font-size: 11px;
      }
      .overview-scope-ctl {
        align-self: flex-start;
        margin-left: 0;
        max-width: 100%;
        height: 32px;
        border-radius: 10px;
        overflow: hidden;
      }
      .overview-scope-btn {
        height: 32px;
        min-width: 60px;
        padding: 0 12px;
        font-size: 11px;
      }
      .overview-scope-btn .scope-label-full { display: none; }
      .overview-scope-btn .scope-label-short { display: inline; }
      .map-fit-btn {
        width: 32px;
        height: 32px;
      }
      .destination-bubble {
        min-width: 68px;
        min-height: 28px;
        padding: 4px 7px;
      }
      .destination-city {
        max-width: 84px;
        font-size: 10px;
      }
      .destination-meta {
        font-size: 8px;
      }
    }
