* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; width: 100%; overflow: hidden; font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif; }

#map { position: absolute; inset: 0; left: 320px; }

/* ---------- Sidebar (2GIS-like) ---------- */
#sidebar {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 320px;
    background: #fff;
    box-shadow: 2px 0 12px rgba(0,0,0,0.12);
    z-index: 10;
    display: flex;
    flex-direction: column;
    padding: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.brand-logo { font-size: 26px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 20px; font-weight: 700; color: #1a8d3e; }
.brand-sub { font-size: 12px; color: #888; }

.search-box { display: flex; gap: 6px; margin-bottom: 12px; }
#search {
    flex: 1; padding: 11px 12px; border: 1px solid #ddd; border-radius: 10px;
    font-size: 14px; outline: none; transition: border .15s;
}
#search:focus { border-color: #1a8d3e; }
#search-btn {
    width: 44px; border: none; border-radius: 10px; background: #1a8d3e;
    color: #fff; font-size: 16px; cursor: pointer;
}
#search-btn:hover { background: #15772f; }

#results { flex: 1; overflow-y: auto; }
.result-item {
    padding: 10px 12px; border-radius: 8px; cursor: pointer;
    border: 1px solid #f0f0f0; margin-bottom: 6px; font-size: 13px;
}
.result-item:hover { background: #f4faf5; border-color: #cfe8d4; }
.result-item .r-title { font-weight: 600; color: #222; }
.result-item .r-sub { color: #888; font-size: 12px; margin-top: 2px; }
.result-empty { color: #aaa; font-size: 13px; padding: 8px; }

.hint { font-size: 12px; color: #777; line-height: 1.6; padding: 10px 0; border-top: 1px solid #f0f0f0; }
.footer { font-size: 11px; color: #aaa; line-height: 1.5; padding-top: 10px; border-top: 1px solid #f0f0f0; }

/* ---------- Top controls ---------- */
#topbar { position: absolute; top: 14px; right: 14px; z-index: 10; display: flex; gap: 8px; }
.ctrl {
    background: #fff; border: none; border-radius: 8px; padding: 9px 13px;
    font-size: 13px; font-weight: 600; color: #333; cursor: pointer;
    box-shadow: 0 1px 6px rgba(0,0,0,0.18);
}
.ctrl:hover { background: #f4faf5; color: #1a8d3e; }
.ctrl.active { background: #1a8d3e; color: #fff; }

#loading {
    position: absolute; top: 50%; left: calc(50% + 160px); transform: translate(-50%,-50%);
    background: rgba(0,0,0,0.7); color: #fff; padding: 10px 18px; border-radius: 8px;
    font-size: 14px; z-index: 20;
}

.maplibregl-popup-content { font-size: 13px; padding: 10px 14px; border-radius: 8px; }
.maplibregl-popup-content b { color: #1a8d3e; }

/* ---------- Mobile ---------- */
@media (max-width: 700px) {
    #map { left: 0; top: 138px; }
    #sidebar { width: 100%; bottom: auto; height: 138px; padding: 10px 14px; }
    #results, .hint, .footer { display: none; }
    #loading { left: 50%; }
}
