html, body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
}

header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
}

nav {
    padding: 22px 26px;
    text-align: right;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #38482f;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: bold;
}

nav ul li a.active,
nav ul li a:hover {
    color: #80918b;
}

#map {
    height: 520px;
    width: 100%;
}

#legend {
    position: absolute;
    bottom: 10px;   /* bawah kiri */
    left: 10px;
    z-index: 1000;  /* pastikan di atas layer kontrol lain tapi tetap peta terlihat */
    background: rgba(255,255,255,0.9);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    max-height: 200px;  /* batasi tinggi legend */
    overflow-y: auto;   /* scroll kalau terlalu banyak */
}

.legend-color {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

#legend-list {
    list-style: none; /* hilangkan bullet */
    padding: 0;
    margin: 0;
}
#legend-list li {
    margin-bottom: 5px;
}

#legend-container {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255,255,255,0.9);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    max-width: 250px;
}

#legend-container h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#legend-list {
    list-style: none;
    padding: 0;
    margin: 0;
}