body, html { margin: 0; padding: 0; height: 100%; background: #0b0b0b; font-family: 'Segoe UI', sans-serif; overflow: hidden; }
#map { height: 100vh; width: 100vw; background: transparent; }

#filter-menu {
    position: absolute; top: 10px; left: 10px; z-index: 1000;
    background: rgba(15, 15, 15, 0.9); color: #eee; padding: 15px;
    border-radius: 6px; border: 1px solid #867333; box-shadow: 0 4px 15px rgba(0,0,0,0.8);
}
#filter-menu h3 { margin: 0 0 10px 0; font-size: 14px; color: #867333; text-transform: uppercase; letter-spacing: 1px; }
.filter-icon-preview {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    background: white;
    border-radius: 4px;
    padding: 2px;
    border: 1px solid #444;
    display: inline-block;
    vertical-align: middle;
}

.filter-item {
    display: flex;
    align-items: center;
    margin: 8px 0;
    cursor: pointer;
    font-size: 13px;
    color: #ccc;
}

.filter-item:hover {
    color: #fff;
}
.filter-item input { margin-right: 10px; cursor: pointer; }
.filter-item input:not(:checked) ~ .filter-icon-preview {
    filter: grayscale(1);
    opacity: 0.3;
}
#map-selector {
    position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%);
    z-index: 1000; display: flex; gap: 12px; background: rgba(0,0,0,0.8); padding: 12px; border-radius: 50px; border: 1px solid #444;
}
.map-btn {
    background: #1a1a1a; color: #888; border: 1px solid #333;
    padding: 10px 20px; cursor: pointer; border-radius: 25px; transition: all 0.3s ease;
    font-weight: bold; font-size: 12px; text-transform: uppercase;
}
.map-btn:hover { border-color: #867333; color: #eee; }
.map-btn.active { background: #867333; color: white; border-color: #ffd700; box-shadow: 0 0 10px rgba(134, 115, 51, 0.6); }

.poi-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 50%;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.poi-icon-wrapper img {
    width: 70%;
    height: 70%;
}
.poi-checked {
    filter: grayscale(1) brightness(0.5);
    opacity: 0.6 !important;
}

.leaflet-popup-content { font-size: 13px; text-align: center; }