/* Panel vrstiev – väčší a s tieňom */
.leaflet-control-layers {
    width: 200px;               /* šírka panelu */
    font-size: 14px;            /* väčší text */
    background: white;
    padding: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    border-radius: 5px;
}

/* Vždy otvorený panel */
.leaflet-control-layers-expanded,
.leaflet-control-layers-list {
    display: block !important;
}

/* Odstráni collapse pri hover alebo click */
.leaflet-control-layers-toggle {
    display: none !important;
}

/* Zarovnanie vľavo hore */
.leaflet-top.leaflet-left {
    margin-left: 10px;
    margin-top: 10px;
}

/* Zarovnanie položiek doľava */
.leaflet-control-layers label {
    text-align: left !important;
    display: block;
    padding: 2px 5px;
    transition: background-color 0.3s ease; /* animácia pozadia */
}

.leaflet-control-layers input {
    margin-right: 5px; /* odsadenie checkboxu od textu */
}

/* Aktívna mapa box */
#currentLayer {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 5px 10px;
    z-index: 1000;
    font-size: 14px;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

/* Highlight pre aktívnu vrstvu v prepínači */
.leaflet-control-layers label.active-layer {
    background-color: #d0ebff;
    border-radius: 3px;
}

/* Overlay pre načítané tiles */
.tile-overlay-rect {
    fill: rgba(0, 0, 255, 0.1);
    stroke: #00f;
    stroke-width: 1;
}
