* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

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

/* Sidebar */
.sidebar {
  width: 320px;
  background: white;
  padding: 20px;
  border-right: 1px solid #ddd;
  overflow-y: auto;
}

.sidebar h1 {
  color: #0077ff;
  text-align: center;
}

input, button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 8px;
}

button {
  background: #0077ff;
  color: white;
  border: none;
}

/* List */
.daftar-lokasi p {
  background: #f1f5ff;
  padding: 12px;
  margin-top: 8px;
  border-radius: 8px;
  cursor: pointer;
}

.daftar-lokasi p:hover {
  background: #dbe8ff;
}

/* Map */
#map {
  flex: 1;
}

/* Marker */
.blue-pin {
  width: 32px;
  height: 32px;
  background: #0077ff;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mobile */
.toggle-btn {
  display: none;
}

@media (max-width: 768px) {
  .sidebar {
    position: absolute;
    left: -320px;
    height: 100%;
    z-index: 1000;
  }

  .sidebar.active {
    left: 0;
  }

  .toggle-btn {
    display: block;
  }
}