@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

:root {
    --bg: #f5f7fb;
    --primary: #0ea5e9;
    --secondary: #06b6d4;
    --text: #1e293b;
    --muted: #64748b;
    --border: #e5e7eb;
    --shadow: 0 18px 50px rgba(2, 6, 23, .10);
    --shadow2: 0 8px 26px rgba(2, 6, 23, .12);

    --safe: #10b981;
    --mid: #f59e0b;
    --low: #ef4444;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial;
    background:
        radial-gradient(1200px 600px at 10% 0%, rgba(14, 165, 233, .12), transparent 60%),
        radial-gradient(900px 500px at 90% 10%, rgba(6, 182, 212, .12), transparent 55%),
        var(--bg);
    color: var(--text);
    overflow: hidden;
}

/* Header */
.header {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    background: linear-gradient(135deg, rgba(14, 165, 233, .92), rgba(6, 182, 212, .92));
    color: #fff;
    box-shadow: 0 12px 40px rgba(2, 6, 23, .18);
    position: relative;
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(2, 6, 23, .20);
    font-size: 24px;
}

.title {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -.2px;
    line-height: 1.1;
}

.subtitle {
    font-size: 12px;
    opacity: .95;
    margin-top: 4px;
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .24);
    cursor: pointer;
    transition: .25s;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.pill:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .25);
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    background: rgba(255, 255, 255, .15);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
}

.lang-btn {
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, .15);
}

.lang-btn.active {
    background: rgba(255, 255, 255, .25);
    color: #fff;
}

/* Toolbar */
.toolbar {
    height: 72px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 999;
    background: linear-gradient(180deg, rgba(255, 255, 255, .80), rgba(255, 255, 255, .62));
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, .9);
}

.search {
    width: 410px;
    min-width: 410px;
    flex-shrink: 0;
    display: flex;
    gap: 10px;
    position: relative;
}

.search-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 50px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    max-height: 280px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 4px;
}

.search-autocomplete.active {
    display: block;
}

.search-category {
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    background: rgba(241, 245, 249, .8);
    border-bottom: 1px solid rgba(229, 231, 235, .5);
}

.search-item {
    padding: 10px 12px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(229, 231, 235, .3);
    transition: background 0.15s;
}

.search-item:hover {
    background: rgba(59, 130, 246, .08);
}

.search-item:last-child {
    border-bottom: none;
}

.search-item-icon {
    font-size: 14px;
}

.search-item-name {
    flex: 1;
    font-weight: 600;
}

.search-item-type {
    font-size: 10px;
    color: #64748b;
    background: rgba(241, 245, 249, .8);
    padding: 2px 6px;
    border-radius: 4px;
}

.input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(229, 231, 235, .9);
    outline: none;
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 12px 30px rgba(2, 6, 23, .06);
    font-size: 13px;
}

.btn {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(229, 231, 235, .2);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 13px;
    transition: .22s;
    user-select: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow2);
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
}

.btn.gray {
    background: rgba(15, 23, 42, .74);
    color: #fff;
    border: none;
}

.btn.green {
    background: linear-gradient(135deg, #10b981, #22c55e);
    color: #fff;
    border: none;
}

.btn.orange {
    background: linear-gradient(135deg, #f59e0b, #fb923c);
    color: #111827;
    border: none;
}

.btn.danger {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #fff;
    border: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(220, 38, 38, 0);
    }
}

.btn.light {
    background: rgba(255, 255, 255, .9);
    color: var(--text);
    border: 1px solid rgba(229, 231, 235, .9);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    backdrop-filter: blur(4px);
}

.loading-overlay.show {
    display: flex;
}

.loading-content {
    text-align: center;
    color: #fff;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #0ea5e9;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 16px;
    font-weight: 700;
}

.toolbar-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.select {
    padding: 10px 8px;
    border-radius: 12px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: rgba(255, 255, 255, .86);
    outline: none;
    font-weight: 700;
    font-size: 12px;
    width: auto;
}

/* Layout */
.container {
    height: calc(100vh - 156px);
    display: flex;
    position: relative;
}

.sidebar {
    width: 410px;
    min-width: 410px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .62));
    backdrop-filter: blur(14px);
    border-right: 1px solid rgba(229, 231, 235, .9);
    overflow: auto;
    box-shadow: 10px 0 40px rgba(2, 6, 23, .06);
    position: relative;
    z-index: 500;
    margin-left: 0;
    transition: margin-left .28s ease, opacity .28s ease;
}

.sidebar.collapsed {
    margin-left: -410px;
    opacity: 0;
    pointer-events: none;
}

.sidebar::-webkit-scrollbar {
    width: 10px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(14, 165, 233, .45);
    border-radius: 999px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.toggle {
    position: absolute;
    left: 410px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(229, 231, 235, .95);
    box-shadow: var(--shadow2);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 800;
    transition: left .28s ease, background .22s;
    color: var(--primary);
}

.toggle:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 8px 26px rgba(14, 165, 233, .35);
}

.sidebar.collapsed~.toggle {
    left: 16px;
}

.panel {
    padding: 18px;
    border-bottom: 1px solid rgba(229, 231, 235, .85);
}

.panel h3 {
    font-size: 14px;
    font-weight: 900;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #0f172a;
    margin-bottom: 12px;
}

.panel small {
    color: var(--muted);
    font-weight: 600;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat {
    background: linear-gradient(135deg, rgba(14, 165, 233, .92), rgba(6, 182, 212, .92));
    color: #fff;
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow2);
    position: relative;
    overflow: hidden;
}

.stat:before {
    content: "";
    position: absolute;
    inset: -40px -40px auto auto;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    transform: rotate(10deg);
}

.stat .val {
    font-size: 24px;
    font-weight: 900;
}

.stat .lbl {
    font-size: 11px;
    opacity: .95;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
    margin-top: 4px;
}

.row {
    display: flex;
    gap: 10px;
}

.row>* {
    flex: 1;
}

.field {
    margin-top: 10px;
}

label {
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
    display: block;
    margin-bottom: 6px;
}

input[type="number"],
select {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(229, 231, 235, .95);
    background: rgba(255, 255, 255, .86);
    outline: none;
    font-size: 13px;
    font-weight: 700;
}

input[type="number"]:focus,
select:focus {
    border-color: rgba(14, 165, 233, .75);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, .12);
}

.check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(229, 231, 235, .9);
    cursor: pointer;
    transition: .2s;
    margin-top: 10px;
}

.check:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(2, 6, 23, .08);
}

.check input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.check b {
    font-size: 13px;
}

.check span {
    color: var(--muted);
    font-weight: 600;
    font-size: 12px;
}

/* Map */
#map {
    flex: 1;
    position: relative;
}

/* Compass */
.compass {
    position: absolute;
    top: 120px;
    left: 11px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .92);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    z-index: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(229, 231, 235, .9);
}

.compass-needle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.compass-n {
    font-size: 11px;
    font-weight: 900;
    color: #dc2626;
    line-height: 1;
}

.compass-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 8px solid #dc2626;
}

.map-float {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 320px;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow);
    z-index: 700;
}

/* Compact legend - positioned middle right, horizontal layout */
.map-float.compact {
    width: auto;
    max-width: 320px;
    padding: 10px 12px;
    border-radius: 12px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    right: 18px;
}

/* New Legend Box - dynamic sizing */
.map-float.legend-box {
    width: auto;
    max-width: none;
    padding: 10px 14px;
    border-radius: 12px;
    top: auto;
    bottom: 30px;
    right: 18px;
    transform: none;
}

.legend-layers {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
}

.legend-layer {
    display: flex;
    flex-direction: column;
    min-width: 70px;
    padding-right: 10px;
}

.legend-layer:last-child {
    padding-right: 0;
}

.legend-layer-title {
    font-size: 9px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    color: #374151;
    padding: 2px 0;
}

.legend-item .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-item .dot.wisata {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.legend-item i {
    font-size: 11px;
    width: 10px;
    text-align: center;
}

.legend-header {
    font-size: 12px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-section {
    margin-bottom: 6px;
    transition: all 0.2s ease;
}

.legend-section:last-child {
    margin-bottom: 0;
}

.legend-title {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.legend-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.legend-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(229, 231, 235, .7);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    color: #1e293b;
    transition: all 0.2s ease;
}

.legend-chip .dot {
    width: 8px;
    height: 8px;
}

.legend-chip i {
    font-size: 10px;
}

.map-float h4 {
    font-size: 13px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #0f172a;
}

/* Simple legend item - no border/background */
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 0;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0;
}

/* Dynamic legend sections */
#legendTPD,
#legendKRB,
#legendTipe,
#legendWisata {
    transition: all 0.2s ease;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    font-size: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    display: inline-block;
}

.dot.safe {
    background: var(--safe);
}

.dot.mid {
    background: var(--mid);
}

.dot.low {
    background: var(--low);
}

.dot.wisata {
    background: #f59e0b;
}

.mini {
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
}

/* Layer Toggle Button */
.layer-toggle {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 10px;
    box-shadow: var(--shadow);
    z-index: 701;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #0f172a;
    transition: all 0.2s ease;
}

.layer-toggle:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Layer Panel Overlay - Top Right */
.layer-panel {
    position: absolute;
    top: 18px;
    right: 18px;
    width: auto;
    max-width: 220px;
    max-height: 50vh;
    overflow-y: auto;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: var(--shadow);
    z-index: 700;
    transition: all 0.2s ease;
    opacity: 1;
    transform: translateY(0);
}

.layer-panel.collapsed {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
}

.layer-header {
    font-size: 12px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.layer-close-icon {
    margin-left: auto;
    color: #64748b;
    font-size: 14px;
}

.layer-close-icon:hover {
    color: #dc2626;
}

.layer-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.layer-section {
    margin: 4px 0;
    padding: 6px;
    background: rgba(241, 245, 249, .5);
    border-radius: 6px;
}

.layer-section-title {
    font-size: 10px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.layer-children {
    margin-left: 12px;
    padding-left: 8px;
    border-left: 2px solid rgba(229, 231, 235, .8);
}

.layer-desc {
    font-size: 9px;
    font-style: italic;
    color: #64748b;
    margin: 2px 0 4px 20px;
    line-height: 1.3;
}

.layer-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 6px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(229, 231, 235, .6);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.layer-item.layer-parent {
    font-weight: 700;
    background: rgba(255, 255, 255, .85);
}

.layer-item:hover {
    background: rgba(255, 255, 255, .95);
}

.layer-item input[type="checkbox"],
.layer-item input[type="radio"] {
    width: 14px;
    height: 14px;
    margin: 0;
}

.info {
    position: absolute;
    left: 18px;
    bottom: 18px;
    width: 360px;
    background: rgba(255, 255, 255, .80);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow);
    z-index: 700;
}

.info h4 {
    font-size: 13px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.kv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(229, 231, 235, .85);
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
}

.kv span {
    color: var(--muted);
    font-weight: 700;
}

.kv b {
    color: var(--primary);
}

.steps {
    max-height: 150px;
    overflow: auto;
    padding-right: 6px;
}

.step {
    padding: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(229, 231, 235, .85);
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
}

.step small {
    color: var(--muted);
    font-weight: 700;
}

.coords {
    position: absolute;
    left: 90px;
    bottom: 8px;
    background: rgba(255, 255, 255, .90);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 8px;
    padding: 4px 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 10px;
    color: var(--muted);
    z-index: 700;
}

/* Toast - positioned top right beside toolbar */
.toast {
    position: fixed;
    top: 90px;
    right: 18px;
    width: 300px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(229, 231, 235, .95);
    border-left: 5px solid var(--primary);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 12px 14px;
    z-index: 2000;
    animation: slideIn .25s ease-out;
}

.toast.success {
    border-left-color: var(--safe);
}

.toast.warn {
    border-left-color: var(--mid);
}

.toast.error {
    border-left-color: var(--low);
}

.toast .t {
    font-weight: 900;
    font-size: 13px;
    margin-bottom: 6px;
}

.toast .m {
    color: var(--muted);
    font-weight: 700;
    font-size: 12px;
}

@keyframes slideIn {
    from {
        transform: translateX(20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, .45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 18px;
}

.modal.show {
    display: flex;
}

.modal-card {
    width: min(760px, 100%);
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(229, 231, 235, .95);
    border-radius: 22px;
    box-shadow: 0 30px 90px rgba(2, 6, 23, .25);
    overflow: hidden;
}

.modal-head {
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(14, 165, 233, .12), rgba(6, 182, 212, .12));
    border-bottom: 1px solid rgba(229, 231, 235, .85);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-head h2 {
    font-size: 15px;
    font-weight: 900;
    color: #0f172a;
}

.modal-body {
    padding: 18px;
    color: #0f172a;
    font-weight: 700;
    font-size: 13px;
}

.modal-body ul {
    margin-left: 18px;
    margin-top: 10px;
}

.modal-body li {
    margin: 6px 0;
    color: #334155;
}

.modal-foot {
    padding: 14px 18px;
    border-top: 1px solid rgba(229, 231, 235, .85);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Print */
@media print {
    body {
        overflow: visible;
    }

    .header,
    .toolbar,
    .sidebar,
    .toggle,
    .map-float,
    .coords {
        display: none !important;
    }

    .info {
        left: 12px;
        bottom: 12px;
        width: 420px;
    }

    #map {
        height: 100vh !important;
        width: 100vw !important;
    }
}