        html, body, #map {
            width: 100%;
            height: 100%;
            padding: 0;
            margin: 0;
        }

        .cursor-coords-control {
            pointer-events: none;
            white-space: nowrap;
            padding: 6px 10px;
            border-radius: 4px;
            border: 1px solid rgba(0, 0, 0, 0.15);
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
            color: #1f2933;
            font: 12px/1.2 Consolas, "Courier New", monospace;
        }

        .map-location-control.leaflet-bar {
            border: none;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 1px 5px rgba(0, 0, 0, 0.35);
        }

        .map-location-control__btn {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            color: #1f4b99;
            text-decoration: none;
            transition: background 0.15s ease, color 0.15s ease;
        }

        .map-location-control__btn:hover {
            background: #f0f4fc;
            color: #173a79;
        }

        .map-location-control__btn.is-loading {
            background: #1f4b99;
            color: #ffffff;
        }

        .map-location-control__glyph {
            font-size: 18px;
            line-height: 1;
            font-weight: 700;
        }

        .map-location-toast {
            position: fixed;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1150;
            max-width: min(320px, calc(100vw - 28px));
            padding: 10px 14px;
            border-radius: 10px;
            border: 1px solid rgba(91, 154, 245, 0.42);
            background: rgba(23, 32, 46, 0.96);
            color: #dde5f2;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
            font: 12px/1.4 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            text-align: center;
            pointer-events: none;
        }

        .map-location-toast[hidden] {
            display: none;
        }

        .map-location-toast--error {
            border-color: rgba(217, 97, 90, 0.5);
        }

        .map-location-toast--info {
            border-color: rgba(91, 154, 245, 0.42);
        }

        .map-location-marker {
            background: transparent;
            border: none;
        }

        .map-location-marker__dot {
            width: 14px;
            height: 14px;
            box-sizing: border-box;
            border-radius: 50%;
            border: 3px solid #ffffff;
            background: #2d7a47;
            box-shadow: 0 0 0 2px rgba(45, 122, 71, 0.34), 0 2px 8px rgba(0, 0, 0, 0.28);
        }

        @media (max-width: 640px) {
            .map-location-toast {
                top: 10px;
            }
        }
