* { box-sizing: border-box; }

html, body {
    margin: 0;
    height: 100%;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

#map {
    position: absolute;
    inset: 0;
    z-index: 1;
}

#panel {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1000;
    width: 260px;
    max-width: 70vw;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    font-size: 13px;
    line-height: 1.4;
    color: #222;
}

#panel h1 {
    margin: 0 0 10px;
    font-size: 16px;
}

/* Přepínač měst (vždy jen jedno město) */
.cities {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.cities a {
    padding: 3px 10px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: #1e66d0;
    background: #eef3fb;
}

.cities a.active {
    color: #fff;
    background: #1e66d0;
}

.slider {
    display: block;
    margin: 0 0 10px;
}

.slider span {
    display: block;
    margin-bottom: 3px;
}

.slider input[type="range"] {
    width: 100%;
    accent-color: #1e66d0;
}

.checks {
    margin: 4px 0 10px;
    border-top: 1px solid #e3e3e3;
    padding-top: 8px;
}

.checks label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 0;
    cursor: pointer;
}

.dot {
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.35);
    flex: 0 0 auto;
}

.dot-station   { background: #1e66d0; }
.dot-circle    { background: transparent; border-style: dashed; border-color: #1e66d0; }

/* rozhledna/vyhlídka v legendě jako špendlík (teardrop) */
.dot-tower, .dot-viewpoint, .dot-outrange {
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border-color: #fff;
}
.dot-tower     { background: #e03131; }
.dot-viewpoint { background: #e0a11b; }
.dot-outrange  { background: #9aa0a6; }

#panel .meta {
    margin: 0;
    color: #666;
    font-size: 12px;
    border-top: 1px solid #e3e3e3;
    padding-top: 8px;
}

/* Špendlíky rozhleden/vyhlídek */
.tower-pin { background: none; border: none; }
.pin-wrap {
    position: relative;
    width: 30px;
    height: 42px;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.4));
}
.pin-emoji {
    position: absolute;
    top: 5px;
    left: 0;
    width: 30px;
    text-align: center;
    font-size: 15px;
    line-height: 19px;
    pointer-events: none;
}

.popup-title { font-weight: 600; font-size: 14px; }
.popup-sub   { color: #555; font-size: 12px; margin-top: 2px; }

.mapy-logo {
    display: block;
    line-height: 0;
    padding: 3px 5px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
