html, body {
    background:#000;
    height: 100vh;
    margin: 0;
    padding: 0;
}

/* Custom cluster style */
.marker-cluster-small {
    font-family:  monospace;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.marker-cluster div {
    background: none;
    font-family:  monospace;
    font-weight: bold;
}

#map {
    width: 100vw;
    height: 100vh; /* nebo 100% */
}

/* mobil / touch tlačítka */
.leaflet-touch .leaflet-bar a {
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    font-size: 4rem;
    color: white;
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, 0.05);
}

.leaflet-touch .leaflet-bar a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--my-color-road-sign);
}

/* Skryj původní text */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
    font-size: 0 !important;
}

/* Vlož nové ikonky */
.leaflet-control-zoom-in:before {
    content: "\f067"; /* FontAwesome ikonka plus */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 22px;
}

.leaflet-control-zoom-out:before {
    content: "\f068"; /* minus */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 22px;
}

/*POP-UP*/
/* Obal popupu */
/* Obal popupu */
.leaflet-popup-content-wrapper {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, 0.08); /* průhledné sklo */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    padding: 10px;
    color: #fff; /* bílý text pro lepší kontrast */
}

/* Trojúhelník pod popupem */
.leaflet-popup-tip {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, 0.04); /* průhledné sklo */
}

/* Samotný obsah */
.leaflet-popup-content {
    margin: 10px 15px;
    font-family:  monospace;
    font-size: 14px;
    line-height: 1.5;
}

/* Zavírací křížek popup */
.leaflet-container a.leaflet-popup-close-button {
    color: #525252;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
    font-size: 22px;
    font-weight: 300;
    margin: 6px;
}

/* Zavírací křížek popup HOVER */
.leaflet-container a.leaflet-popup-close-button:hover {
    color: #a9a9a9;
}


.close {
    font-size: 3rem;
    padding: 0;
}

/* Odstranění VLAJKY */
.leaflet-attribution-flag {
    display: none !important;
}

@media (min-width: 768px) {
    .leaflet-touch .leaflet-bar a {
        width: 3rem;
        height: 3rem;
        line-height: 3rem;
        font-size: 3rem;
    }

    .close {
        font-size: 2rem;
    }
}