body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    height: 100vh;
}

#sidebar {
    position: absolute;
    height: 100%;
    width: 300px;
    background-color: #f0f0f0;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

#map-container {
    flex: 1;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
}

#searchResults {
    list-style: none;
    padding: 0;
    max-height: calc(100% - 220px);
    overflow-y: auto;
    margin-top: 10px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
}

#searchResults li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

#searchResults li:hover {
    background-color: rgb(173, 252, 226);
}

#searchForm {
    margin-bottom: 10px;
}

#searchValue {
    font-size: 16px;
    width: 250px;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.btn {
    margin-bottom: 5px;
    padding: 7px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

.page-btn {
    background-color: #fff;
    color: #007bff;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

#res-cnt {
    font-weight: bold;
    margin-left: 10px;
}

strong {
    font-size: 18px;
}

.overlayElement {
    background-color: #3399CC;
    border: 2px solid white;
    color: white;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.overlayElement:hover {
    background-color: #286090;
}

.closeButton {
    position: absolute;
    top: 5px;
    right: 5px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 18px;
    text-align: center;
    cursor: pointer;
}

.closeButton:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.ol-zoom-in, .ol-zoom-out {
    background-color: rgba(0, 0, 0, 1) !important;
}

.ol-zoom {
    bottom: 65px !important;
    left: auto !important;
    top: auto !important;
}

.ol-zoomslider {
    background-color: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid #ccc !important;
    right: 20px !important;
    bottom: 40px !important;
    left: auto !important;
    top: auto !important;
}

.zoom-level {
    position: absolute;

    
    bottom: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
}

.scale-line {
    position: absolute;
    /* left: auto !important; */
    /* top: auto !important; */
    /* bottom: 10px !important; */
    /* right: 20px !important; */
    right: 260px;
    bottom: 8px;
    padding: 5px;
    /* border: 1px solid #ccc; */
    border-radius: 3px;
    font-size: 14px;
}

.ol-scale-line-inner {
    font-size: 16px;
}