html,
body,
#map {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.segmented-menu {
    position: fixed;
    top: 10px;
    right: 10px;
    background: white;
    display: flex;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.segmented-menu button {
    flex: 1;
    border: none;
    background: #f2f2f2;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}
.segmented-menu button:hover {
    background: #e0e0e0;
}
.segmented-menu button.active {
    background: #2563eb;
    color: white;
}
.map-nav-links {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    z-index: 1000;
}
.map-nav-links a {
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}
.map-nav-links a:hover {
    background: #f0f0f0;
}
.backoffice-link {
    color: #2563eb;
}

.signpost-marker {
    background: none !important;
    border: none !important;
}

.signpost-popup {
    text-align: center;
}
.signpost-popup .signpost-text {
    margin: 0 0 6px;
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
}
.signpost-popup .signpost-coords {
    font-size: 0.75rem;
    color: #888;
}
