/* ── MAP ROLLING ── */
.map-rolling-wrap {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--bg-page);
  flex: 1; height: 100%; overflow: hidden;
}
.map-rolling-header {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-card);
  flex-shrink: 0; gap: 10px;
}
.map-rolling-search {
  position: relative;
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-hover);
  border: 1px solid var(--border-card);
  border-radius: 10px; padding: 6px 10px; flex: 1;
}
.map-rolling-search i { color: var(--text-muted); font-size: 11px; }
.map-rolling-search input {
  border: none; background: none; outline: none;
  font-family: 'Poppins', sans-serif; font-size: 12px;
  color: var(--text-primary); flex: 1;
}
.map-rolling-search input::placeholder { color: var(--text-muted); }
.map-rolling-close-btn {
  width: 32px; height: 32px; border: none;
  background: var(--bg-hover); border-radius: 8px;
  color: var(--text-muted); font-size: 13px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .15s;
}
.map-rolling-close-btn:hover { background: var(--brand-pale); color: var(--brand-primary); }
.map-rolling-filter-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-card);
  flex-shrink: 0; overflow: visible; scrollbar-width: none;
  position: relative; z-index: 10;
}
.map-rolling-filter-bar::-webkit-scrollbar { display: none; }
.map-rolling-map-wrap {
  flex: 1; position: relative; min-height: 0;
}
#mapRollingEl {
  position: absolute; inset: 0;
  width: 100%; height: 100%; z-index: 1;
}
.map-rolling-count {
  position: absolute; top: 8px; right: 8px; z-index: 999;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border-card);
  border-radius: 20px; padding: 3px 10px;
  font-size: 11px; font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  pointer-events: none; white-space: nowrap;
}
.map-rolling-suggest {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: 12px; box-shadow: 0 8px 24px var(--shadow-lg);
  z-index: 999; display: none; max-height: 220px; overflow-y: auto;
}
.map-rolling-suggest-item {
  padding: 10px 14px; cursor: pointer;
  border-bottom: 1px solid var(--border-card);
  transition: background .15s;
}
.map-rolling-suggest-item:last-child { border-bottom: none; }
.map-rolling-suggest-item:hover { background: var(--bg-hover); }
.map-rolling-suggest-nama { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.map-rolling-suggest-sub  { font-size: 11px; color: var(--text-muted); margin-top: 2px; }