#map {
    height: 100vh;
    width: 100%;
    position: sticky;
}

.popup{
    position: absolute;
        z-index: 20;
}

.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-height: 80%;
    overflow-y: auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}


.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.pagination button {
    margin: 0 5px;
}

.pagination span {
    margin: 0 5px;
}

.btn-sticky{
    display: inline;
}

.header img {
    object-fit: contain;
}

.header {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}