/* assets/css/style.css */

/* Fix posisi Zoom Control Leaflet */
.leaflet-top.leaflet-left .leaflet-control-zoom {
    margin-top: 150px !important;
    margin-left: auto !important;
    margin-right: 20px !important;
}

body { margin: 0; padding: 0; font-family: Arial, sans-serif; background: #f9f9f9; color: #333; }

/* Banner logo */
#banner {
    display:flex; align-items:center; justify-content:center;
    background:#638e43; padding:10px;
    color:#fff; font-size:20px; font-weight:bold;
    position:relative; z-index:1200;
}
#banner img { height:60px; margin-right:10px; }

#map { position: absolute; top: 60px; bottom: 0; width: 100%; }

/* Dropdown Gaia */
#controls {
    position: absolute; top: 100px; right: 20px;
    background: #ffffff; padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    opacity: 0; transform: translateY(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: inline-block; min-width: 150px;
}
#controls.show { opacity: 1; transform: translateY(0); }
#controls h3 { margin: 0 0 6px 0; font-size: 13px; text-align: center; color: #333; }

#gaia-select {
    padding: 8px 12px; border-radius: 8px; border: none;
    font-size: 14px; background: #638e43; color: white;
    cursor: pointer; width: 100%;
}
#gaia-select:focus { outline: none; }

/* Tombol Cari Gaia Terdekat */
#find-nearest-container {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%); z-index: 1000;
}
#find-nearest {
    background-color: #638e43; color: white; border: none;
    padding: 16px 24px; border-radius: 12px; font-size: 16px;
    cursor: pointer; font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    transition: background 0.2s;
}
#find-nearest:hover { background-color: #77a852; }

/* Styling Popup */
.popup-title {
    font-weight: bold; font-size: 16px; color : #638e43;
    text-align: center; display: block; margin-bottom: 5px;
}
.popup-info {
    font-size: 12px; text-align: center; margin-bottom: 8px; color: #555;
}
.popup-button {
    display: flex; justify-content: center; align-items: center; gap: 6px;
    width: 90%; padding: 10px; margin: 5px auto;
    text-align: center; background-color: #638e43; color: white !important;
    border-radius: 8px; text-decoration: none !important;
    cursor: pointer; font-size: 14px; font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.popup-button:hover { background-color: #77a852; }

/* Tombol Toggle Dark/Light */
#theme-toggle {
    position: absolute; bottom: 100px; left: 20px; z-index: 1100;
}
#toggle-btn {
    background: #fff; border: none; font-size: 20px;
    border-radius: 50%; padding: 10px; cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

@media (max-width: 600px) {
    #controls { padding: 8px; right: 10px; top: 90px; }
    #gaia-select { font-size: 13px; padding: 7px; }
    #find-nearest { font-size: 14px; padding: 12px 18px; }
}