
        #mapContainer { 
            height: 100vh; width: 100%;
        }
        #sidebar { 
            position: absolute;
            right: 10px;
            top: 10px;
            overflow-y: auto;
            padding: 0px;
            background: white;
            border: 1px solid #dd6a00;
            width: 300px;
            color: #494540;
        }
        #sidebarTop{
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 10px;
            position: absolute;
            left: 10px;
            top: 10px;
            overflow-y: auto;
            padding: 0px;
            background: white;
            border: 1px solid #dd6a00;
            width: 300px;
            color: #494540;
            z-index: 999;
        }
        #sidebarTop #weather{
            width: calc(100% - 80px);
        }
        #sidebarTop #temperature{
            background: url(images/icon_temperature.png) 6px 10px no-repeat;
            background-size: 18px auto, auto;
            padding: 8px 0px 2px 30px;
        }
        #sidebarTop #humidity{
            background: url(images/icon_humidity.png) 6px 6px no-repeat;
            background-size: 18px auto, auto;
            padding: 2px 0px 3px 30px;
        }
        #sidebarTop #lastUpdate{
            font-size: 12px;
            color:#dd6a00;
            padding-left: 8px;
            padding-bottom: 10px;
        }
        #sidebarTop #mainPage a{
            display: flex;
            padding: 10px 0;
            width: 80px;
            background-color: #ff9d6c;
            color: #fff;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        #districtToggle, #categoryToggle{
            cursor: pointer;
            background-image: url(images/downarrow.svg);
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 20px;
        }

        .currentToggle{
            background-image: url(images/uparrow.svg) !important;
        }
        .sidebar-title1{
            background: #dd6a00;
            color: #fff;
            font-weight: normal;
            padding: 5px 8px;
        }

        .sidebar-title2{
            background: #ffcb98;
            color:#734017;
        }

        #searchResults { 
            display: none;
            position: relative;
            background: white;
            padding: 0 10px 10px 10px;
            border-top: 1px solid #dd6a00;
            width: 100%;
            max-width: unset;
            max-height: 400px;
            overflow-y: scroll;
        }


.district-menu, .category-menu {
    background: white;
    padding: 5px;
    border: 1px solid #ccc;
    background-color: #efefef;
}
.district-option, .category-option {
    padding: 5px;
    cursor: pointer;
}
.district-option:hover, .category-option:hover {
    background-color: #f0f0f0;
}
.disabled{
    color:#999;
}
#itemList {
    padding: 0px;
    max-height: 70vh;
    overflow: auto;
}
#itemList div{
    padding: 5px;
    cursor: pointer;
}
#itemList div:hover{
    color: #dd6a00;
}

        .close-btn { 
            float: right; 
            cursor: pointer; 
            font-size: 20px;
            background-color: #dd6a00;
            color: #fff;
        }

        #searchResults .close-btn { 
            float: right; 
            cursor: pointer; 
            width: 20px;
            height: 20px;
            padding: 5px;
            margin-top: 5px;
        }

        #searchResults img{
            display: block;
            width: 100%;
            height: 100%;
        }

        .highlight { background-color: yellow; }
        #backBtn { display: none; margin-top: 10px; padding: 5px 10px; }
        #details { 
            padding: 10px 15px;
            max-height: 70vh;
            overflow-y: scroll;
        }
        #details .detailTitle{
            margin: 0;
            padding: 5px 0 12px 5px;
            font-size: 20px;
        }
        #details .detailBtns{
            display: flex;
            /*justify-content: space-between;*/
            margin-bottom: 15px;
            padding: 0 !important;
            border: none !important;
        }
        #details .detailBtns a{
            max-width: 30%;
            margin-right: 3%;
        }
        #details .detailBtns a:last-of-type{
            margin-right: 0%;
        }
        #details .detailBtns img{
            padding: 2px 0px;
            width: 100%;
            height: auto;
        }

        #details div:nth-of-type(n+2):not(:last-of-type) {
    border-bottom: 1px solid #dd6a00;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
        #details .detailWeb{
            margin-bottom: 15px;
            padding: 0 !important;
            border: none !important;
        }
        #details .close-btn { 
            float: right;
            cursor: pointer;
            font-size: 16px;
            color: #ffffff;
            background-color: #dd6a00;
            margin: 10px 5px 10px 10px;
            padding: 2px 10px;
            border-radius: 8px;
        }
        #searchBar{
            position: absolute;
            top: 104px;
            left: 10px;
            width: 300px;
            z-index: 999;
            border: 1px solid #dd6a00;
            background: #fff;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        #searchBar .icoSearch{
            width: 30px;
            height: 30px;
            margin-left: 10px;
        }
        #searchBar .icoSearch img{
            width: 100%;
            height: 100%;
        }
        #searchBar .search-button{
            margin: 0;
            padding: 0;
            width: 50px;
            background: #dd6a00;
            color: #fff;
            border: 0;
            height: 40px;
            cursor: pointer;
        }
        #searchBar .search-input{
            margin: 0;
            border: none;
            height: 40px;
            outline: none;
            padding-left: 10px;
            font-size: 16px;
            width: calc(100% - 90px);
        }
        #searchBar .search-result-list div{
            cursor: pointer;
            padding: 3px 0;
        }
        #searchBar .search-result-list div:hover{
            color: #dd6a00;
        }

        #categoryMenu{
            display: flex;
            flex-wrap: wrap;
            padding: 0 10px;
            color: #746555;
            background-color: #efefef;
        }
        #categoryMenu div{
            width: 100%;
            cursor: pointer;
            padding: 5px 4px 5px 30px;
            background-size: 22px auto, auto;
            background-repeat: no-repeat;
            background-position: left center;
        }
        

        #categoryMenu .typ1{
            order: 1;
            background-image: url(images/icon_hotspot.png);
        }
        #categoryMenu .typ2{
            order: 2;
            background-image: url(images/icon_park.png);
        }
        #categoryMenu .typ3{
            order: 3;
            background-image: url(images/icon_toilet.png);
        }
        #categoryMenu .typ4{
            order: 4;
            background-image: url(images/icon_mall.png);
        }
        #categoryMenu .typ5{
            order: 5;
            background-image: url(images/icon_civic.png);
        }
        #categoryMenu .typ6{
            order: 6;
            background-image: url(images/icon_elder.png);
        }
        #categoryMenu .typ7{
            order: 7;
            background-image: url(images/icon_restaurant.png);
        }

        @media (max-width: 768px) {
            #searchBar{
                top: 100px;
                width: 200px;
            }
            #sidebar { 
                width: 100%;
                right: 0;
                top: 60vh;
                height: 40vh;
                min-height: 40vh;
                max-height: 40vh;
                background-color: #efefef;
            }
            #searchResults { 
                max-height: 330px;
            }
            #details { 
                margin-bottom: 30px;
            }
            #mapContainer { 
                height: calc(60vh - 90px);
                width: 100%;
                top: 90px;
            }
            #sidebarTop{
                margin-bottom: 0px;
                position: fixed;
                right: 0px;
                top: 0px;
				left: 0px;
                overflow-y: auto;
                padding: 0px;
                width: 100%;
                color: #494540;
            }
            #districtToggle, #categoryToggle{
                padding: 10px;
            }
            .district-menu, .category-menu {
                border: none;
            }
            #details .detailBtns a{
                max-width: 20%;
                margin-right: 5%;
            }
            #itemList div{
                padding: 5px 10px;
            }
        }

        * { box-sizing: border-box; }
        body { margin: 0; font-family: Arial, sans-serif; }
        select, button, input { width: 100%; margin-bottom: 10px; padding: 5px; }
    


.sidebar-title3 {
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  background-color: #feeed7;
  background-image: url(images/downarrow.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding: 5px 8px;
  color:#734017;
}

.subcategory-menu {
  background: #fafafa;
  max-height: 40vh;
  overflow-y: auto;
}

.subcategory-item {
  padding: 5px 8px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.subcategory-item:hover {
  color: #dd6a00;
}

.no-data {
  padding: 20px;
  text-align: center;
  color: #999;
}

.marker-label {
    position: absolute;
    background:#dd6a00;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(221, 106, 0, 0.3);
    font-family: Arial, sans-serif;
}

/* 
.marker-label::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.8);
}
     */