:root {
  --map-bg: #f5f6ef;
  --map-paper: #fffdfa;
  --map-card: #fff;
  --map-ink: #2e2a26;
  --map-muted: #6d6359;
  --map-line: #d5cbc0;
  --map-accent: #d64933;
  --map-accent-soft: #ffe4d6;
  --map-green: #46623f;
  --map-green-soft: #e9f0df;
  --map-empty: #f2eee8;
  --map-shadow: 0 14px 38px rgba(45, 39, 30, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.map-page {
  color: var(--map-ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 10%, rgba(245, 196, 130, 0.35), transparent 38%),
    radial-gradient(circle at 88% 8%, rgba(134, 173, 123, 0.25), transparent 28%),
    linear-gradient(180deg, #fffef9 0%, var(--map-bg) 100%);
}

.mapSkipLink {
  position: absolute;
  left: 12px;
  top: -42px;
  z-index: 100;
  border-radius: 999px;
  background: var(--map-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  text-decoration: none;
  transition: top 0.2s;
}

.mapSkipLink:focus {
  top: 12px;
}

.mapTopbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(255, 253, 250, 0.86);
  border-bottom: 1px solid rgba(213, 203, 192, 0.82);
}

.mapTopbarInner {
  width: min(1260px, calc(100vw - 28px));
  margin: 0 auto;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mapBrand {
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--map-ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.mapTopnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mapTopnav a {
  text-decoration: none;
  color: var(--map-muted);
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  padding: 7px 12px;
  border: 1px solid transparent;
}

.mapTopnav a:hover {
  border-color: var(--map-line);
  color: var(--map-ink);
}

.mapMain {
  padding: 22px 0 34px;
}

.mapWorkspace {
  width: min(1260px, calc(100vw - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(300px, 0.72fr);
  gap: 16px;
  align-items: start;
}

.mapSidebar {
  display: grid;
  gap: 16px;
}

.mapCard {
  border-radius: 20px;
  background: linear-gradient(180deg, var(--map-card), var(--map-paper));
  border: 1px solid rgba(213, 203, 192, 0.86);
  box-shadow: var(--map-shadow);
  overflow: hidden;
}

.mapCanvasCard {
  position: sticky;
  top: 78px;
}

.mapCardHead,
.mapSidebarHead {
  padding: 16px 16px 10px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.mapEyebrow {
  margin: 0;
  color: var(--map-accent);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mapTitle {
  margin: 3px 0 0;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

.mapLead {
  margin: 6px 0 0;
  color: var(--map-muted);
  font-size: 14px;
}

.mapSidebarTitle {
  margin: 0;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-size: 21px;
  line-height: 1.3;
}

.mapDayTabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mapDayTab {
  border: 1px solid rgba(213, 203, 192, 0.92);
  background: #fff;
  color: var(--map-muted);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  min-height: 34px;
  padding: 8px 12px;
  cursor: pointer;
  transition: transform 0.14s, border-color 0.14s, box-shadow 0.14s;
}

.mapDayTab:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 73, 51, 0.54);
}

.mapDayTab.is-active {
  color: #fff;
  border-color: var(--map-accent);
  background: linear-gradient(180deg, #e76a55, var(--map-accent));
  box-shadow: 0 9px 20px rgba(214, 73, 51, 0.28);
}

.mapDayBlock {
  padding: 0 16px 12px;
}

.mapControls {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1.2fr) minmax(140px, 0.8fr);
  padding: 0 16px;
}

.mapField {
  display: grid;
  gap: 6px;
}

.mapFieldLabel {
  margin: 0;
  font-size: 12px;
  color: var(--map-muted);
  font-weight: 800;
}

.mapField input,
.mapField select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(213, 203, 192, 0.94);
  background: #fff;
  color: var(--map-ink);
  font-size: 15px;
  padding: 9px 11px;
  line-height: 1.4;
}

.mapField input:focus,
.mapField select:focus {
  outline: 2px solid rgba(214, 73, 51, 0.32);
  outline-offset: 1px;
  border-color: rgba(214, 73, 51, 0.46);
}

.mapNotice {
  margin: 12px 16px 0;
  border-radius: 14px;
  border: 1px dashed rgba(213, 203, 192, 0.9);
  background: rgba(255, 255, 255, 0.84);
  color: var(--map-muted);
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 700;
}

.mapStatus {
  margin: 10px 16px 16px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(214, 73, 51, 0.32);
  background: var(--map-accent-soft);
  color: #6e3529;
  font-size: 13px;
  font-weight: 700;
}

.mapList {
  display: grid;
  gap: 10px;
  max-height: min(72vh, 760px);
  overflow: auto;
  padding: 0 16px 16px;
}

.mapListEmpty {
  border-radius: 14px;
  border: 1px dashed rgba(213, 203, 192, 0.86);
  background: rgba(255, 255, 255, 0.8);
  padding: 14px;
}

.mapListItem {
  border-radius: 14px;
  border: 1px solid rgba(213, 203, 192, 0.86);
  background: #fff;
  padding: 10px;
  display: grid;
  gap: 9px;
}

.mapListHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mapListName {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.mapBadgeRow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mapBadge {
  border-radius: 999px;
  border: 1px solid rgba(213, 203, 192, 0.9);
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.mapBadgeBooth {
  border-color: rgba(70, 98, 63, 0.4);
  background: var(--map-green-soft);
  color: var(--map-green);
}

.mapBadgeDay {
  border-color: rgba(214, 73, 51, 0.36);
  background: var(--map-accent-soft);
  color: #84402f;
}

.mapBadgeStatus {
  border-width: 1px;
}

.mapBadgeStatus.status-free {
  border-color: rgba(62, 127, 57, 0.45);
  background: rgba(139, 207, 132, 0.25);
  color: #2f6f2a;
}

.mapBadgeStatus.status-moderate {
  border-color: rgba(165, 130, 29, 0.48);
  background: rgba(245, 213, 111, 0.35);
  color: #7a5d12;
}

.mapBadgeStatus.status-busy {
  border-color: rgba(169, 94, 29, 0.52);
  background: rgba(244, 169, 95, 0.32);
  color: #7b3f12;
}

.mapBadgeStatus.status-crowded {
  border-color: rgba(152, 45, 34, 0.54);
  background: rgba(235, 106, 92, 0.28);
  color: #7e2118;
}

.mapBadgeStatus.status-closed {
  border-color: rgba(130, 126, 121, 0.48);
  background: rgba(205, 201, 195, 0.4);
  color: #5f5c58;
}

.mapBadgeStatus.status-unknown {
  border-color: rgba(143, 134, 122, 0.42);
  background: rgba(221, 215, 206, 0.42);
  color: #635a50;
}

.mapListActions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mapListButton {
  border: 1px solid rgba(213, 203, 192, 0.9);
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  color: var(--map-muted);
  cursor: pointer;
}

.mapListButton:hover:not([disabled]) {
  border-color: rgba(214, 73, 51, 0.48);
  color: var(--map-ink);
}

.mapListButton[disabled] {
  cursor: not-allowed;
  opacity: 0.48;
}

.mapActionRow {
  padding: 0 16px 12px;
  display: flex;
  justify-content: center;
}

.mapActionButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(214, 73, 51, 0.4);
  background: linear-gradient(180deg, #fef5f0, #ffe8dc);
  color: #7b2a1f;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 16px;
  line-height: 1.2;
}

.mapActionButton:hover {
  border-color: rgba(214, 73, 51, 0.62);
  color: #612014;
}

.mapSimpleNotice {
  margin: 0 16px 16px;
}

.mapSimpleNames {
  margin: 0 16px 16px;
  padding: 12px;
  border-radius: 14px;
  border: 1px dashed rgba(213, 203, 192, 0.9);
  background: rgba(255, 255, 255, 0.84);
}

.mapSimpleNamesTitle {
  margin: 0 0 10px;
  color: var(--map-ink);
  font-size: 14px;
  font-weight: 800;
}

.mapSimpleNamesList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mapSimpleNameItem {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(213, 203, 192, 0.95);
  background: #fff;
  color: var(--map-muted);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.mapSimpleNamesEmpty {
  margin: 0;
  color: var(--map-muted);
  font-size: 13px;
  font-weight: 700;
}

.venueMap {
  width: calc(100% - 12px);
  margin: 0 6px 14px;
  height: min(74vh, 840px);
  min-height: 460px;
  border-radius: 20px;
  border: 1px solid rgba(213, 203, 192, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f9f6f1);
}

.mapLegend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 16px;
}

.mapLegendItem {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(213, 203, 192, 0.9);
  background: rgba(255, 255, 255, 0.85);
  padding: 6px 10px;
  font-size: 12px;
  color: var(--map-muted);
  font-weight: 700;
}

.mapLegendSwatch {
  width: 11px;
  height: 11px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.mapLegendSwatch.status-free {
  background: #8bcf84;
}

.mapLegendSwatch.status-moderate {
  background: #f5d56f;
}

.mapLegendSwatch.status-busy {
  background: #f4a95f;
}

.mapLegendSwatch.status-crowded {
  background: #eb6a5c;
}

.mapLegendSwatch.status-empty {
  background: #e8e2d8;
}

.mapLegendSwatch.status-match {
  background: #b43224;
}

.map-booth-tooltip {
  border-radius: 9px;
  border: 1px solid rgba(213, 203, 192, 0.96);
  box-shadow: 0 8px 24px rgba(45, 39, 30, 0.2);
  color: var(--map-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.map-booth-tooltip .leaflet-tooltip-content {
  margin: 7px 9px;
}

.map-booth-tooltip strong {
  font-size: 12px;
  color: #2f5a2f;
}

.mapBoothLabelIcon {
  background: transparent;
  border: 0;
}

.mapBoothLabelBody {
  transform: translate(-50%, 2px);
  min-width: 60px;
  max-width: 130px;
  display: grid;
  width: max-content;
  gap: 1px;
  padding: 3px 6px;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.14);
  pointer-events: none;
}

.mapBoothLabelBody.dir-up {
  transform: translate(-50%, -100%);
  text-align: center;
}

.mapBoothLabelBody.dir-down {
  transform: translate(-50%, 2px);
  text-align: center;
}

.mapBoothLabelBody.dir-left {
  transform: translate(-100%, -50%);
  text-align: left;
}

.mapBoothLabelBody.dir-right {
  transform: translate(2px, -50%);
  text-align: left;
}

.mapBoothLabelBody.is-dim {
  opacity: 0.35;
}

.mapBoothLabelBody.is-focus {
  animation: mapLabelFocusPulse 0.6s ease-in-out 3;
  box-shadow:
    0 0 0 2px rgba(255, 228, 214, 0.96),
    0 10px 20px rgba(180, 50, 36, 0.28);
}

.mapBoothLabelName {
  display: block;
  color: #3f372f;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: normal;
}

.mapBoothLabelWait {
  display: block;
  color: #4e473f;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.leaflet-control-zoom a {
  color: var(--map-ink);
}

.leaflet-interactive.is-pulse {
  animation: boothPulse 0.45s ease-in-out 4;
}

@keyframes boothPulse {
  0% {
    stroke-width: 2;
    stroke-opacity: 0.9;
    fill-opacity: 0.7;
  }
  50% {
    stroke-width: 5;
    stroke-opacity: 1;
    fill-opacity: 0.95;
  }
  100% {
    stroke-width: 2;
    stroke-opacity: 0.9;
    fill-opacity: 0.7;
  }
}

@keyframes mapLabelFocusPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.map-focus-halo {
  animation: mapFocusHaloPulse 0.6s ease-out 3;
  pointer-events: none;
}

@keyframes mapFocusHaloPulse {
  0% {
    stroke-width: 2;
    stroke-opacity: 0.9;
    fill-opacity: 0.45;
  }
  50% {
    stroke-width: 5;
    stroke-opacity: 0.32;
    fill-opacity: 0.08;
  }
  100% {
    stroke-width: 2;
    stroke-opacity: 0.9;
    fill-opacity: 0.45;
  }
}

.mapModal {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(38, 31, 25, 0.58);
  display: none;
  padding: 22px;
}

.mapModal.is-open {
  display: grid;
  place-items: center;
}

.mapModalPanel {
  width: min(820px, 100%);
  max-height: min(82vh, 880px);
  overflow: auto;
  border-radius: 20px;
  border: 1px solid rgba(213, 203, 192, 0.94);
  background: #fff;
  box-shadow: 0 24px 56px rgba(20, 16, 12, 0.34);
}

.mapModalHead {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 16px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(180deg, #fff, #fff6f1);
  border-bottom: 1px solid rgba(213, 203, 192, 0.9);
}

.mapModalKicker {
  margin: 0;
  color: var(--map-accent);
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.mapModalTitle {
  margin: 2px 0 0;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-size: 28px;
  line-height: 1.25;
}

.mapModalClose {
  border: 1px solid rgba(213, 203, 192, 0.9);
  background: #fff;
  color: var(--map-muted);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.mapModalClose:hover {
  border-color: rgba(214, 73, 51, 0.45);
  color: var(--map-ink);
}

.mapModalBody {
  padding: 14px 16px 16px;
  display: grid;
  gap: 10px;
}

.mapModalVendor {
  border-radius: 14px;
  border: 1px solid rgba(213, 203, 192, 0.84);
  background: linear-gradient(180deg, #fff, #fffbf8);
  padding: 12px;
}

.mapModalVendorDetail {
  display: grid;
  gap: 12px;
}

.mapModalVendorHead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.mapModalVendorName {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
}

.mapModalVendorSub {
  color: var(--map-muted);
  font-size: 12px;
  font-weight: 700;
}

.mapModalVendorMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mapDetailSummary {
  display: grid;
  gap: 8px;
}

.mapDetailMetaLine {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.mapDetailChip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(213, 203, 192, 0.92);
  background: #fff;
  color: var(--map-muted);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.mapDetailChip.status-free {
  border-color: rgba(62, 127, 57, 0.45);
  background: rgba(139, 207, 132, 0.24);
  color: #2f6f2a;
}

.mapDetailChip.status-moderate {
  border-color: rgba(165, 130, 29, 0.48);
  background: rgba(245, 213, 111, 0.36);
  color: #7a5d12;
}

.mapDetailChip.status-busy {
  border-color: rgba(169, 94, 29, 0.52);
  background: rgba(244, 169, 95, 0.32);
  color: #7b3f12;
}

.mapDetailChip.status-crowded {
  border-color: rgba(152, 45, 34, 0.54);
  background: rgba(235, 106, 92, 0.3);
  color: #7e2118;
}

.mapDetailChip.status-closed {
  border-color: rgba(130, 126, 121, 0.48);
  background: rgba(205, 201, 195, 0.4);
  color: #5f5c58;
}

.mapDetailDesc {
  margin: 0;
  color: var(--map-ink);
  font-size: 14px;
  line-height: 1.55;
}

.mapDetailLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(214, 73, 51, 0.4);
  background: linear-gradient(180deg, #fef5f0, #ffe8dc);
  color: #7b2a1f;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  padding: 6px 10px;
}

.mapDetailSections {
  display: grid;
  gap: 10px;
}

.mapDetailSection {
  border-radius: 12px;
  border: 1px solid rgba(213, 203, 192, 0.86);
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
}

.mapDetailSectionHead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.mapDetailSectionTitle {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  color: var(--map-ink);
}

.mapDetailSectionCount {
  color: var(--map-muted);
  font-size: 12px;
  font-weight: 800;
}

.mapDetailRows {
  display: grid;
  gap: 6px;
}

.mapDetailRow {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  border-radius: 10px;
  border: 1px solid rgba(213, 203, 192, 0.7);
  padding: 7px;
  background: #fff;
}

.mapDetailThumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(213, 203, 192, 0.8);
  background: #f7f4ef;
}

.mapDetailThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mapDetailMain {
  min-width: 0;
}

.mapDetailName {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--map-ink);
}

.mapDetailCategory {
  margin: 2px 0 0;
  font-size: 11px;
  color: var(--map-muted);
  font-weight: 700;
}

.mapDetailInfo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.mapDetailComment {
  grid-column: 2 / -1;
  margin: 0;
  font-size: 12px;
  color: var(--map-muted);
  line-height: 1.45;
}

.mapDetailEmpty {
  margin: 0;
  color: var(--map-muted);
  font-size: 13px;
  font-weight: 700;
}

.mapModalEmpty {
  border-radius: 12px;
  border: 1px dashed rgba(213, 203, 192, 0.9);
  background: rgba(242, 238, 232, 0.52);
  color: var(--map-muted);
  padding: 14px;
  font-size: 14px;
}

body.map-modal-open {
  overflow: hidden;
}

body.map-page-simple .mapTopbar {
  display: none;
}

body.map-page-simple {
  overflow: hidden;
}

body.map-page-simple .mapMain {
  padding: 6px 0 2px;
}

body.map-page-simple .mapWorkspace {
  width: min(1240px, calc(100vw - 10px));
  grid-template-columns: 1fr;
}

body.map-page-simple .mapSidebar {
  display: none;
}

body.map-page-simple .mapCanvasCard {
  position: static;
  top: auto;
}

body.map-page-simple .venueMap {
  min-height: 390px;
  height: clamp(380px, 62vh, 620px);
}

@media (max-width: 1080px) {
  .mapWorkspace {
    grid-template-columns: 1fr;
  }

  .mapCanvasCard {
    position: static;
  }

  .mapList {
    max-height: none;
  }
}

@media (max-width: 720px) {
  .mapMain {
    padding-top: 14px;
  }

  .mapTopbarInner,
  .mapWorkspace {
    width: calc(100vw - 20px);
  }

  .mapTopbarInner {
    min-height: 56px;
  }

  .mapBrand {
    font-size: 15px;
  }

  .mapTopnav {
    gap: 6px;
  }

  .mapTopnav a {
    font-size: 11px;
    padding: 6px 9px;
  }

  .mapControls {
    grid-template-columns: 1fr;
  }

  .mapCardHead,
  .mapSidebarHead {
    flex-direction: column;
    align-items: start;
  }

  .mapTitle {
    font-size: 26px;
  }

  .mapSidebarTitle {
    font-size: 18px;
  }

  .mapBoothLabelBody {
    max-width: 104px;
    padding: 2px 5px;
  }

  .mapBoothLabelName {
    font-size: 10px;
    line-height: 1.15;
  }

  .mapBoothLabelWait {
    font-size: 9px;
    line-height: 1.15;
  }

  .venueMap {
    min-height: 380px;
    height: min(58vh, 620px);
  }

  .mapModal {
    padding: 12px;
  }

  .mapModalTitle {
    font-size: 22px;
  }

  body.map-page-simple .mapWorkspace {
    width: calc(100vw - 12px);
  }
}
