#map {
height: 600px;
}

/* Dropdown Styling */
.setting {
    position: absolute;
    top: 2px;
    right: 10px;
    /* background: white;
    padding: 1px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
    cursor: pointer;
    /* color: #6c757d; */
}

#filter-kategori{
    display: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 5px;
    width: 150px;
    z-index: 1000000000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.checkbox-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolom */
    gap: 5px; /* Jarak antar checkbox */
    padding: 5px;
}

.checkbox-container label {
    display: flex;
    align-items: center;
    gap: 5px; /* Jarak antara checkbox dan huruf */
    font-size: 14px; /* Ukuran font agar proporsional */
    cursor: pointer;
}

.filter-checkbox {
    cursor: pointer; /* Mengubah cursor menjadi pointer saat hover */
}

.marker-cluster {
    color: white;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    line-height: 40px;
}

#select-all, #deselect-all {
    padding: 4px 8px;
    font-size: 12px;
    margin-bottom: 8px;
}

#select-all {
    background-color: #4CAF50;
    color: white;
}

#deselect-all {
    background-color: #6c757d;
    color: white;
}

#select-all:hover {
    background-color: #3e8e41;
}

#deselect-all:hover {
    background-color: #5a6268;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #F18317;
}

input:checked + .slider:before {
    transform: translateX(26px);
}


.info {
padding: 6px 8px;
font: 14px/16px Arial, Helvetica, sans-serif;
background: white;
background: rgba(255, 255, 255, 0.8);
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
border-radius: 5px;
}

.info h4 {
margin: 0 0 5px;
color: #777;
}

.legend {
line-height: 18px;
color: #555;
}

.legend i {
width: 18px;
height: 18px;
float: left;
margin-right: 8px;
opacity: 0.7;
}

.info-box {
background-color: white;
}

.text-label {
text-align: center;
font-size: 12px;
color: #000;
}

.bttn {
padding: 5px 16px;
font-size: 14px;
font-weight: 600;
background-color: #6c757d;
color: white;
border-radius: 6px;
cursor: pointer;
transition: background-color 0.2s ease;
}

.bttn:hover {
background-color: #4CAF50;
}

.btn-primary {
background-color: #4CAF50;
}

.primary {
background-color: #4CAF50;
}

.leaflet-bar {
border: none;
border-radius: 6px;
}

.disabled {
background-color: #d3d3d3;  
color: #a9a9a9;             
cursor: not-allowed;        
pointer-events: none;      
}