* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 340px;
    background: #f8f9fa;
    padding: 20px;
    overflow-y: auto;
    border-right: 2px solid #0066cc;
}

#map {
    flex: 1;
}

/* Judul */
h1 {
    color: #0066cc;
    margin-bottom: 15px;
    text-align: center;
}

/* Input & Button */
input, button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    font-size: 16px;
    border-radius: 8px;
}

button {
    background: #0066cc;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #0055aa;
}

/* Hasil Pencarian */
.result-item {
    background: white;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    cursor: pointer;
}

.result-item:hover {
    background: #e6f0ff;
}

/* Daftar Lokasi di Sidebar */
.daftar-lokasi p {
    padding: 12px 14px;
    margin: 6px 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
}

.daftar-lokasi p:hover {
    background: #e6f0ff;
    border-color: #0066cc;
    color: #0066cc;
}

/* ==================== MARKER PIN BIRU (yang kamu inginkan) ==================== */
.blue-pin-marker {
    background: none;
    border: none;
}

.blue-pin {
    width: 34px;
    height: 42px;
    background: #4285F4;           /* Biru Google Maps */
    border-radius: 50% 50% 50% 0;
    position: relative;
    transform: rotate(45deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-number {
    transform: rotate(-45deg);     /* Agar angka tidak miring */
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-top: -3px;
}

/* Opsional: Kalau mau pakai pin emoji nanti */
.pin-icon {
    font-size: 38px;
    color: #0066cc;
}