html,
body {
    height: 100svh;
    margin: 0;
    overflow: hidden;
}

#map {
    height: calc(100% - 50px);
    margin: 0;
}

#loading {
    position: absolute;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-family: Arial;
}

.popup img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
}

/* Sidebar / Detail Panel Baseline (Desktop) */
#detailPanel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 2000;
    transition: right 0.3s ease-in-out;
    box-shadow: -3px 0 15px rgba(0, 0, 0, .2);
    overflow-y: auto;
}

#detailPanel.show {
    right: 0;
}

.panel-header {
    position: sticky;
    top: 0;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

#closePanel {
    border: none;
    background: none;
    color: black;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}

/* Tampilan Mobile (Full Window / Full Width) */
@media (max-width: 576px) {
    #detailPanel {
        width: 100%;
        right: -100%;
    }
}