html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

#bhag-map-wrapper {
    position: relative;
    height: 100vh;
}

#loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    padding: 10px;
    display: none;
}

#bhag-map {
    height: 100%;
    width: 100%;
}

#zoom-message 
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 14px 24px;
    border-radius: 8px;
    z-index: 1001;
    display: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-size: 16px;
    color: #333;
    text-align: center;
    max-width: 90%;
}

.leaflet-popup-content {
    padding: 0 !important;
}

.leaflet-popup-content-wrapper {
    border-radius: 10px;
}

/* --- SEARCH BAR + LOCATION BUTTON WRAPPER --- */
#txt_location_search {
    position: absolute;
    top: 10px;
    left: 50px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

/* --- SEARCH INPUT --- */
#camp-search {
    padding: 10px 12px 10px 35px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 300px;
    font-size: 16px;
    background: #fff url('https://cdn-icons-png.flaticon.com/512/622/622669.png') no-repeat 10px center;
    background-size: 16px 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* --- FIND MY LOCATION BUTTON --- */
#find-my-location 
{
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    color: black; /* 👈 to doda črno barvo besedilu */
    text-decoration: none;
}

#find-my-location:hover {
    background-color: #f0f0f0;
}

/* --- AUTOCOMPLETE DROPDOWN --- */
#search-dropdown {
    position: absolute;
    top: 45px;
    left: 50px;
    z-index: 1001;
    background: white;
    border: 1px solid #ccc;
    width: 300px;
    max-height: 250px;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#search-dropdown li {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

#search-dropdown li:hover,
#search-dropdown li:focus {
    background-color: #f0f0f0;
}

.search-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.dropdown-text {
    display: flex;
    flex-direction: column;
}

.dropdown-description {
    color: black;
    font-weight: bold;
    font-size: 0.85em;
}

.dropdown-address {
    font-size: 0.9em;
    color: #666;
}

/* --- RESPONSIVE --- */
@media (max-width: 767px) {
    #txt_location_search {
        flex-direction: column;
        left: 20px;
        gap: 6px;
    }

    #camp-search {
        width: 250px;
    }

    #find-my-location {
        width: 250px;
        font-size: 14px;
    }

    #search-dropdown {
        width: 250px;
        left: 20px;
    }
}

@media (min-width: 768px) {
    #camp-search {
        width: 400px;
    }

    #search-dropdown {
        width: 400px;
    }
}



.circle-marker {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}



/*agenda_zgoraj*/
/* Wrapper za search + gumb + agendo */
#txt_location_search {
    position: absolute;
    top: 10px;
    left: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    flex-wrap: wrap;
}

/* Search bar */
#camp-search 
{
    padding: 10px 12px 10px 35px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 300px;
    font-size: 16px;
    background: #fff url('https://cdn-icons-png.flaticon.com/512/622/622669.png') no-repeat 10px center;
    background-size: 16px 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Gumb za iskanje lokacije */
#find-my-location 
{
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    color: black;
}

/*Agenda (vodoravna legenda) */
#map-legend 
{
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.95);
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    font-size: 13px;
    z-index: 1000; /* pomembno */
    margin-left: 10px;
}

.legend-item 
{
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    color: #333;
}

.legend-circle 
{
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: inline-block;
}

/*Mobilna prilagoditev */
@media (max-width: 767px) 
{
    #txt_location_search {
        flex-direction: column;
        align-items: flex-start;
        left: 20px;
    }

    #camp-search,
    #find-my-location {
        width: 100%;
    }

    #map-legend {
        flex-wrap: wrap;
        margin-top: 6px;
    }
}