﻿
        /* =========================================================
           1. Base layout
           ========================================================= */

        html,
        body {
            height: 100%;
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            position: relative;
        }

        #mapid {
            height: 100%;
            width: 100%;
            position: relative;
            z-index: 0;
            visibility: visible;
        }

        #welcomeBanner {
            display: none; position: fixed; top: 10px; left: 50%;
            transform: translateX(-50%); z-index: 1300;
            width: min(580px, calc(100vw - 280px)); box-sizing: border-box;
            align-items: center; gap: 14px; padding: 11px 13px;
            background: rgba(255,255,255,.97); color: #24313d;
            border: 1px solid rgba(23,33,43,.14); border-radius: 10px;
            box-shadow: 0 4px 16px rgba(0,0,0,.22);
        }
        .welcomeBannerText { flex: 1; min-width: 0; font-size: 12px; line-height: 1.4; }
        .welcomeBannerText strong { display: block; margin-bottom: 2px; font-size: 14px; color: #17212b; }
        .welcomeBannerText span { display: block; }
        .welcomeBannerText a { color: #176ca5; font-weight: bold; }
        .welcomeBannerActions { display: flex; gap: 6px; flex-shrink: 0; }
        .welcomeBannerActions button { padding: 7px 9px; border: 0; border-radius: 6px; cursor: pointer; font-size: 11px; font-weight: bold; }
        #welcomeSaveButton { background: #2478b8; color: #fff; }
        #welcomeDismissButton { background: #edf1f4; color: #24313d; }

        @media (max-width: 760px) {
            #welcomeBanner { top: 8px; left: 8px; right: 8px; transform: none; width: auto; align-items: stretch; flex-direction: column; gap: 8px; }
            .welcomeBannerActions { justify-content: flex-end; }
        }

        .leaflet-marker-icon {
            image-rendering: auto;
            shape-rendering: geometricPrecision;
            backface-visibility: hidden;
        }

        /* =========================================================
           2. More maps menu
           ========================================================= */

        #mapsButton {
            position: fixed;
            top: 52px;
            right: 10px;
            z-index: 1002;
            width: 104px;
            height: 34px;
            box-sizing: border-box;
            background-color: #ffffff;
            color: #111;
            padding: 0 10px;
            border: 1px solid rgba(23, 33, 43, 0.14);
            border-radius: 8px;
            text-decoration: none;
            font-size: 13px;
            font-weight: bold;
            line-height: 1.1;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
            cursor: pointer;
        }

        #mapsButton:hover {
            background-color: #ffffff;
        }

        #mapsMenu {
            display: none;
            position: fixed;
            top: 90px;
            right: 10px;
            z-index: 1003;
            background-color: rgba(255, 255, 255, 0.94);
            padding: 6px;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            width: 104px;
            box-sizing: border-box;
        }

        #mapsMenu a {
            display: block;
            padding: 7px 6px;
            border-radius: 6px;
            color: #111;
            text-decoration: none;
            font-size: 12px;
            font-weight: bold;
            line-height: 1.12;
            text-align: center;
        }

        #mapsMenu a:hover {
            background-color: #f0f0f0;
        }

        .leaflet-top.leaflet-right {
            top: 94px;
            right: 10px;
        }

        .leaflet-top.leaflet-right .leaflet-control {
            margin-top: 0;
            margin-right: 0;
        }

        /* =========================================================
           3. Address panel
           ========================================================= */

        #overlay {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 999;
            background: transparent;
            padding: 0;
            width: 265px;
        }

        .visuallyHidden { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

        .addressInputWrap { position: relative; }

        #addressForm input[type="text"] {
            width: 100%;
            height: 48px;
            padding: 9px 11px;
            margin-bottom: 8px;
            border: 1px solid #ccc;
            border-radius: 8px;
            box-sizing: border-box;
            background: rgba(255, 255, 255, 0.94);
            font-size: 14px;
        }

        .addressInputHint {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 11px 8px;
            box-sizing: border-box;
            pointer-events: none;
            color: #333;
            line-height: 1.25;
        }

        .addressInputHint span { font-size: 13px; font-weight: 700; line-height: 1.1; }
        .addressInputHint small { margin-top: 2px; font-size: 11px; font-style: italic; color: #65717c; }
        #address:focus + .addressInputHint,
        #address:not(:placeholder-shown) + .addressInputHint { display: none; }

        #address:focus {
            outline: 2px solid rgba(52, 152, 219, 0.22);
            border-color: #3498db;
        }

        #suggestions {
            position: absolute;
            background-color: white;
            width: calc(100% - 20px);
            max-height: 150px;
            overflow-y: auto;
            z-index: 1001;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            margin-top: -15px;
            scrollbar-width: auto;
            scrollbar-color: #aaa #eee;
        }

        #suggestions::-webkit-scrollbar {
            width: 12px;
        }

        #suggestions::-webkit-scrollbar-track {
            background: #eee;
            border-radius: 10px;
        }

        #suggestions::-webkit-scrollbar-thumb {
            background-color: #aaa;
            border-radius: 10px;
            border: 3px solid #eee;
        }

        #suggestions div {
            padding: 10px;
            cursor: pointer;
        }

        #suggestions div:hover {
            background-color: #f0f0f0;
        }

        /* =========================================================
           4. Options menu
           ========================================================= */

        #optionsButton {
            position: absolute;
            bottom: 20px;
            left: 10px;
            z-index: 1000;
            background-color: #2C3E50;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }

        #optionsMenu {
            display: none;
            position: absolute;
            bottom: 70px;
            left: 10px;
            z-index: 1001;
            background-color: rgba(255, 255, 255, 0.94);
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        #optionsMenu label {
            display: block;
            margin-bottom: 2px;
            font-weight: bold;
            color: #333;
        }

        #optionsMenu select {
            width: 100%;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
            background-color: #f9f9f9;
        }

        #optionsMenu .optionCheckboxRow {
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 8px 0 0 0;
            font-size: 12px;
            color: #333;
            font-weight: bold;
        }

        #optionsMenu .optionCheckboxRow input {
            margin: 0;
        }

        #optionsMenu .optionCheckboxRow label {
            margin: 0;
            display: inline;
        }

        #installAppButton {
            width: 100%;
            margin-top: 12px;
            padding: 9px 10px;
            border: 0;
            border-top: 1px solid #d7dce0;
            border-radius: 0 0 5px 5px;
            background: transparent;
            color: #2C3E50;
            cursor: pointer;
            font-size: 13px;
            font-weight: bold;
            text-align: left;
        }

        #installAppButton:hover,
        #installAppButton:focus-visible {
            background-color: #edf1f4;
        }

        /* =========================================================
           5. Buttons
           ========================================================= */

        #hideAllButton {
            position: fixed;
            bottom: 20px;
            right: 10px;
            z-index: 1001;
            background-color: #ffffff;
            padding: 6px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            color: #000000;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 12px;
            font-weight: bold;
        }

        #infoButton {
            position: fixed;
            bottom: 20px;
            right: 59px;
            z-index: 1001;
            background-color: #ffffff;
            padding: 6px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            color: #000000;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 12px;
            font-weight: bold;
        }

        #my-revoke-btn {
            position: fixed;
            bottom: 20px;
            right: 146px;
            z-index: 1001;
            background-color: #ffffff;
            padding: 6px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            color: #000000;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 12px;
            font-weight: bold;
            line-height: normal;
            height: auto;
            min-height: auto;
            margin: 0;
        }

        #centerMapButton {
            width: 50px;
            height: 40px;
            padding: 0;
            font-size: 22px;
            line-height: 1;
            background-color: #3498db;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0,0,0,0.3);
            z-index: 1000;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
        }

        #centerMapButton:hover {
            background-color: #2980b9;
        }

        #centerMapButton:disabled {
            opacity: 1;
        }

        #centerMapButton .gps-icon {
            display: block;
            width: 22px;
            height: 22px;
            line-height: 1;
        }

        #centerMapButton .gps-icon svg {
            display: block;
            width: 22px;
            height: 22px;
        }

        #centerMapButton.gps-loading {
            cursor: wait;
        }

        #centerMapButton .gps-spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.45);
            border-top-color: #ffffff;
            border-radius: 50%;
            box-sizing: border-box;
            animation: gpsSpin 0.8s linear infinite;
        }

        #centerMapButton.gps-loading .gps-icon {
            display: none;
        }

        #centerMapButton.gps-loading .gps-spinner {
            display: inline-block;
        }

        @keyframes gpsSpin {
            to {
                transform: rotate(360deg);
            }
        }

        #centerMapButton::after {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background-color: transparent;
            z-index: -1;
        }

        #downloadMapButton {
            position: fixed;
            bottom: 105px;
            right: 10px;
            z-index: 1002;
            width: 50px;
            height: 40px;
            padding: 0;
            font-size: 22px;
            line-height: 1;
            background-color: #3498db;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0,0,0,0.3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
        }

        #downloadMapButton .download-icon {
            display: block;
            font-size: 22px;
            line-height: 1;
        }

        #downloadMapButton:hover {
            background-color: #2980b9;
        }

        #shareButton {
            position: fixed; bottom: 150px; right: 10px; z-index: 1002;
            width: 50px; height: 40px; padding: 0; background: #3498db;
            color: #fff; border: 0; border-radius: 6px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.3); cursor: pointer;
            font-size: 12px; font-weight: bold;
        }

        #shareButton:hover { background: #2980b9; }

        #shareMenu {
            display: none; position: fixed; right: 68px; bottom: 150px;
            z-index: 11000; width: 190px; padding: 10px; background: #fff;
            border-radius: 8px; box-shadow: 0 3px 14px rgba(0,0,0,0.28);
            box-sizing: border-box;
        }

        #shareMenu button {
            display: block; width: 100%; margin: 0 0 4px; padding: 8px;
            border: 0; border-radius: 5px; background: #3498db; color: #fff;
            cursor: pointer; font-weight: bold;
        }

        #shareMenu .shareDescription {
            margin: 0 2px 10px;
            color: #4d4d4d;
            font-size: 11px;
            line-height: 1.35;
        }

        #shareMenu .sharePrivacy {
            margin: 3px 2px 0;
            padding-top: 8px;
            border-top: 1px solid #ddd;
            color: #555;
            font-size: 10.5px;
            line-height: 1.35;
        }

        #shareStatus { margin: 6px 1px 0; font-size: 11px; line-height: 1.35; }
        #shareStatus { color: #285b39; min-height: 15px; }

        #location-info-btn {
            position: fixed;
            bottom: 20px;
            right: 215px;
            z-index: 1001;
            background-color: #ffffff;
            padding: 6px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            color: #000000;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 12px;
            font-weight: bold;
        }

        .hide {
            display: none !important;
        }

        /* =========================================================
           6. Marker popup buttons
           ========================================================= */

        .deleteButton,
        .editButton,
        .clearAllButton {
            display: inline-block;
            margin: 5px;
            padding: 5px 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 12px;
        }

        .deleteButton,
        .clearAllButton {
            background-color: #E74C3C;
            color: #fff;
        }

        .editButton {
            background-color: #3498DB;
            color: #fff;
        }

        .popupContent {
            position: relative;
        }

        /* =========================================================
           7. Info / privacy overlays
           ========================================================= */

        #infoOverlay {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            max-width: 500px;
            max-height: calc(100vh - 140px);
            overflow: hidden;
            background-color: rgba(255, 255, 255, 0.94);
            padding: 0;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            z-index: 10900;
            box-sizing: border-box;
        }

        .infoOverlayScroll {
            max-height: calc(100vh - 156px);
            margin: 8px 4px 8px 0;
            padding: 12px 16px 12px 20px;
            overflow-y: auto;
            overscroll-behavior: contain;
            box-sizing: border-box;
            scrollbar-width: thin;
            scrollbar-color: #aeb9c3 transparent;
        }

        .infoOverlayScroll::-webkit-scrollbar { width: 9px; }
        .infoOverlayScroll::-webkit-scrollbar-track { margin-block: 6px; background: transparent; }
        .infoOverlayScroll::-webkit-scrollbar-thumb { background:#aeb9c3; border-radius:8px; border:2px solid transparent; background-clip:padding-box; }

        #infoOverlay p {
            margin: 10px 0;
        }

        #closeInfoButton {
            display: block;
            margin: 14px 0 0 auto;
            padding: 7px 12px;
            border: 0;
            border-radius: 6px;
            background: #2478b8;
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
        }

        #closeInfoButton:hover {
            background: #1f679d;
        }

        #location-info-popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            max-width: 500px;
            max-height: calc(100vh - 40px);
            overflow-y: auto;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            font-size: 12px;
            box-sizing: border-box;
        }

        /* =========================================================
           8. Header labels
           ========================================================= */

        .leaflet-tooltip.header-label {
            position: absolute;
            background: #ffffff !important;
            opacity: 1 !important;
            transition: none !important;
            border: none !important;
            border-radius: 6px;
            padding: 3px 7px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.24);
            color: #111;
            display: inline-block;
            width: auto;
            font-weight: 700;
            font-size: 12px;
            text-align: center;
            line-height: 1.2;
            white-space: nowrap;
            pointer-events: auto;
            touch-action: none;
            cursor: pointer;
            -webkit-font-smoothing: antialiased;
            transform: translateZ(0);
        }

        .leaflet-tooltip.header-label.header-pressed {
            opacity: 0 !important;
            transition: none !important;
        }

        .leaflet-tooltip.header-label.header-hiding {
            opacity: 0 !important;
            transition: none !important;
        }

        .leaflet-tooltip-top.header-label {
            margin-top: 0 !important;
        }

        .leaflet-tooltip-bottom.header-label {
            margin-top: 0 !important;
        }

        .leaflet-tooltip-left.header-label,
        .leaflet-tooltip-right.header-label {
            margin-left: 0 !important;
        }

        .leaflet-tooltip-top.header-label::before,
        .leaflet-tooltip.header-label::before {
            display: none !important;
        }

        .leaflet-tooltip.header-label::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -8px;
            transform: translateX(-50%) translateZ(0);
            width: 0;
            height: 0;
            border-left: 7px solid transparent;
            border-right: 7px solid transparent;
            border-top: 9px solid #ffffff;
            filter: drop-shadow(0 2px 1px rgba(0,0,0,0.18));
            pointer-events: none;
        }

        .leaflet-popup-tip-container {
            display: none !important;
        }

        .leaflet-popup {
            margin-bottom: 0 !important;
        }

        /* =========================================================
           9. Account and saved maps
           ========================================================= */
        #accountButton { position:fixed; top:10px; right:10px; z-index:1102; width:104px; height:34px; box-sizing:border-box; background:#fff; color:#17212b; border:1px solid rgba(23,33,43,.14); border-radius:8px; padding:0 10px; font-size:13px; line-height:1.1; font-weight:700; text-align:center; cursor:pointer; box-shadow:0 2px 8px rgba(0,0,0,.18); }
        #accountButton:hover { background:#f7f9fb; }
        #accountPanel { display:none; position:fixed; top:48px; right:10px; z-index:10500; isolation:isolate; width:min(320px,calc(100vw - 20px)); max-height:calc(100vh - 62px); overflow:hidden; box-sizing:border-box; background:#fff; padding:0; border:1px solid rgba(23,33,43,.12); border-radius:12px; box-shadow:0 10px 34px rgba(0,0,0,.26); }
        body.account-panel-open #my-revoke-btn,
        body.account-panel-open #location-info-btn { display:none !important; }
        .accountHeader { padding:16px 16px 12px; border-bottom:1px solid #e7ebef; }
        .accountHeader h3 { margin:0 0 5px; font-size:18px; color:#17212b; }
        .accountIntro { margin:0; color:#586574; font-size:12px; line-height:1.45; }
        .accountBody { padding:14px 16px 16px; }
        #accountPanel label { display:block; margin:8px 0 4px; font-size:12px; font-weight:700; color:#2f3b47; }
        #accountPanel input { width:100%; box-sizing:border-box; padding:10px 11px; margin:0 0 5px; border:1px solid #cbd3da; border-radius:7px; font-size:14px; }
        #accountPanel input:focus { outline:2px solid rgba(52,152,219,.22); border-color:#3498db; }
        #accountPanel button { border:0; border-radius:6px; padding:7px 10px; cursor:pointer; font-weight:700; font-size:12px; }
        #accountPanel button:disabled { opacity:.5; cursor:not-allowed; }
        .accountPrimary { background:#2478b8; color:#fff; }
        .accountSecondary { background:#edf1f4; color:#24313d; }
        .accountDanger { background:#c83d32; color:#fff; }
        .accountGhost { background:transparent; color:#415160; border:1px solid #cbd3da !important; }
        .accountRow { display:flex; gap:6px; flex-wrap:wrap; align-items:center; margin:8px 0; }
        .accountStatus { font-size:12px; line-height:1.4; margin:8px 0 0; min-height:17px; }
        .privacyNotice { margin-top:12px; padding:10px; background:#f5f8fa; border-radius:8px; color:#52606d; font-size:11px; line-height:1.45; }
        .privacyNotice strong { color:#26333f; }
        .passwordRules { display:grid; grid-template-columns:1fr 1fr; gap:3px 10px; margin:7px 0 10px; font-size:10.5px; color:#7a4650; }
        .passwordRules .ok { color:#267246; }
        .textButton { background:transparent !important; color:#2478b8 !important; padding:4px 0 !important; }
        .accountTabs { display:flex; gap:4px; padding:8px; border-bottom:1px solid #e7ebef; background:#f7f9fb; }
        .accountTab { flex:1; background:transparent !important; color:#536170 !important; }
        .accountTab.active { background:#fff !important; color:#17212b !important; box-shadow:0 1px 4px rgba(0,0,0,.12); }
        .accountView { padding:13px 14px 15px; }
        #authLoggedOut { max-height:calc(100vh - 66px); overflow-y:auto; }
        #profileAccountView { max-height:calc(100vh - 110px); overflow-y:auto; box-sizing:border-box; }
        .accountSummary { margin-bottom:10px; }
        .activeMapHeading,
        .sectionTitle.savedMapsHeading {
            font-size: 13px;
            font-weight: bold;
            line-height: 1.1;
            color: #333;
        }
        .activeMapName { font-size:13px; font-weight:400; word-break:break-word; color:#17212b; }
        .activeMapSavedTime { margin-top:2px; font-size:10px; color:#788491; }
        .mapActionsTop { display:flex; gap:6px; margin:9px 0; }
        .mapActionsTop button { flex:1; }
        .savedMapsTitleRow { display:flex; align-items:baseline; justify-content:space-between; gap:8px; }
        .mapUsage { font-size:10.5px; color:#6c7884; white-space:nowrap; }
        .mapUsage.nearLimit { color:#8a5a00; font-weight:700; }
        .mapUsage.atLimit { color:#a02f28; font-weight:700; }
        #savedMapsList { display:flex; flex-direction:column; gap:7px; max-height:clamp(120px,calc(100vh - 260px),465px); overflow-y:auto; overscroll-behavior:contain; touch-action:pan-y; padding-right:3px; scrollbar-width:thin; scrollbar-color:#aeb9c3 #eef2f5; cursor:grab; }
        #savedMapsList.dragging { cursor:grabbing; user-select:none; }
        #savedMapsList::-webkit-scrollbar { width:9px; }
        #savedMapsList::-webkit-scrollbar-track { background:#eef2f5; border-radius:8px; }
        #savedMapsList::-webkit-scrollbar-thumb { background:#aeb9c3; border-radius:8px; border:2px solid #eef2f5; }
        #savedMapsList:not(.hasOverflow) { cursor:default; padding-right:0; }
        .savedMapItem { border:1px solid #e0e6eb; border-radius:8px; padding:9px 10px; background:#fff; }
        .savedMapItem.current { border-color:#68a9d6; box-shadow:0 0 0 2px rgba(52,152,219,.10); }
        .savedMapName { font-weight:700; font-size:12px; margin-bottom:2px; word-break:break-word; color:#1f2b35; }
        .savedMapMeta { font-size:10px; color:#788491; margin-bottom:6px; }
        .savedMapActions { display:flex; gap:5px; align-items:center; }
        .savedMapActions button { padding:5px 8px !important; font-size:10.5px !important; }
        .savedMapOrderActions { margin-left:auto; display:flex; gap:3px; }
        .savedMapOrderButton { width:25px; min-width:25px; height:25px; padding:0 !important; display:inline-flex; align-items:center; justify-content:center; background:#edf1f4; color:#31404d; border:1px solid #d5dde4 !important; font-size:13px !important; line-height:1; }
        .savedMapOrderButton:disabled { opacity:.32 !important; cursor:default !important; }
        .emptyMaps { padding:18px 8px; text-align:center; color:#6c7884; font-size:12px; }
        .sectionTitle { margin:12px 0 6px; font-size:12px; font-weight:700; color:#26333f; }
        .profileCard { padding:10px; border:1px solid #e1e6ea; border-radius:8px; margin:8px 0; }
        .profileKey { font-size:10px; text-transform:uppercase; letter-spacing:.04em; color:#7a8793; }
        .profileValue { margin-top:2px; font-size:12px; color:#26333f; word-break:break-all; }
        .dangerZone { margin-top:15px; padding-top:12px; border-top:1px solid #ead4d1; }
        .dangerZone h4 { color:#9f2f28; margin:0 0 5px; font-size:12px; }
        .planBadge { display:inline-block; padding:2px 7px; border-radius:999px; background:#e8eef5; font-size:10px; white-space:nowrap; }
        /* =========================================================
           10. Mobile
           ========================================================= */

        @media (max-width: 768px) {
            #overlay {
                width: 220px;
            }

            .addressInputHint span {
                font-size: 12px;
            }

            #addressForm input[type="text"] {
                width: 100%;
            }

            #accountButton,
            #mapsButton {
                width: 96px;
                height: 32px;
                padding: 0 8px;
                font-size: 12px;
            }

            #mapsButton {
                top: 50px;
            }

            .leaflet-top.leaflet-right {
                top: 90px;
                right: 10px;
            }

            #mapsMenu {
                top: 90px;
                width: 96px;
                padding: 5px;
            }

            #mapsMenu a {
                padding: 6px 4px;
                font-size: 11px;
            }
        }

        /* =========================================================
           11. Print
           ========================================================= */

        @media print {
            html,
            body {
                margin: 0;
                padding: 0;
                height: 100%;
                width: 100%;
                overflow: hidden;
            }

            #mapid {
                height: 100vh !important;
                width: 100vw !important;
                position: absolute;
                top: 0;
                left: 0;
                z-index: 0;
            }

            .leaflet-control,
            #optionsButton,
            #overlay,
            #optionsMenu,
            #hideAllButton,
            #centerMapButton,
            #infoButton,
            #my-revoke-btn,
            #location-info-btn,
            #suggestions,
            #addressForm,
            #mapsButton,
            #mapsMenu,
            #accountButton,
            #accountPanel,
            #shareButton,
            #shareMenu,
            #welcomeBanner,
            .non-printable {
                display: none !important;
            }

            * {
                -webkit-print-color-adjust: exact;
                print-color-adjust: exact;
            }
        }

    
