body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.header {
    background: #9cf19f;
    top: 0; /* Sesuaikan dengan tinggi header */
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    position: fixed;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 1001; /* Pastikan di atas peta dan kontrol Leaflet */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    height: 50px;
    margin-right: 15px;
}

.filter-container {
    position: fixed;
    top: 70px; /* Sesuaikan dengan tinggi header */
    left: 15px; /* Jarak dari kiri */
    background: white;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1001; /* Pastikan di atas peta dan kontrol Leaflet */
    display: flex;
    flex-direction: column;
}

.filter-select {
    width: 250px;
    margin-bottom: 10px;
    padding: 8px;
    font-size: 14px;
}

/* Tampilan horizontal di layar besar */
@media (min-width: 768px) {
    .filter-container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .filter-select {
        width: 200px;
        margin-right: 15px;
        margin-bottom: 10px;
    }
    .filter-select:last-child {
        margin-right: 0;
    }
}

/* Penyesuaian kontrol zoom */
.leaflet-control-zoom {
    top: 300px; /* Sesuaikan dengan tinggi header */
    left: 15px;
}

/* Responsivitas untuk header */
@media (max-width: 767px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }
    .logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .header h1 {
        margin: 0;
    }
}