#suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#suggestions a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

#suggestions a:hover {
    background-color: #f8f9fa;
}


.leaflet-control-search {
    background: white;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 5px;
}

.leaflet-control-search input {
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 4px;
    width: 180px;
    font-size: 14px;
    outline: none;
}

.leaflet-control-search input:focus {
    border-color: #0078A8;
    box-shadow: 0 0 5px rgba(0, 120, 168, 0.5);
}

/* Tombol Cari */
.leaflet-control-search button {
    background: #0078A8; /* Warna utama */
    color: white;
    border: none;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.3s, transform 0.2s; /* Animasi */
}

/* Hover Effect */
.leaflet-control-search button:hover {
    background: #005f7f; /* Warna lebih gelap saat hover */
    transform: translateY(-2px); /* Sedikit mengangkat tombol */
}

/* Active Effect */
.leaflet-control-search button:active {
    background: #004b63; /* Warna lebih pekat saat diklik */
    transform: translateY(1px); /* Efek menekan tombol */
}
