﻿@charset "UTF-8";
/* ==========================================================================
   ACR Partner - Map Agent UI
   ชุดสไตล์กลางสำหรับทุกหน้า (topbar, เมนูประเภททรัพย์, แถบค้นหา, แผนที่)
   โหลดไฟล์นี้ "หลังสุด" เสมอ เพื่อให้ทับสไตล์เดิมของเทมเพลตได้
   ========================================================================== */

:root {
    --acr-brand: #6b4636;
    --acr-brand-dark: #4d3126;
    --acr-brand-soft: #f3ece8;
    --acr-accent: #f7a13e;
    --acr-accent-soft: #fff4e4;
    --acr-ink: #1e2430;
    --acr-ink-soft: #55607a;
    --acr-muted: #7b8598;
    --acr-line: #e4e7ee;
    --acr-bg: #f4f6f9;
    --acr-card: #ffffff;
    --acr-ok: #1f9d63;
    --acr-radius: 14px;
    --acr-radius-sm: 10px;
    --acr-shadow: 0 1px 2px rgba(23, 31, 46, .06), 0 8px 24px rgba(23, 31, 46, .07);
    --acr-shadow-sm: 0 1px 2px rgba(23, 31, 46, .07);
}

/* ---------- base ---------- */
body.acr-body {
    margin: 0;
    background: var(--acr-bg);
    color: var(--acr-ink);
    font-family: 'Prompt', 'Noto Sans Thai', 'Segoe UI', Tahoma, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.acr-body a { color: var(--acr-brand); text-decoration: none; }
.acr-body a:hover { color: var(--acr-brand-dark); text-decoration: none; }
.acr-body h1, .acr-body h2, .acr-body h3, .acr-body h4, .acr-body h5 {
    font-family: inherit;
    color: var(--acr-ink);
    letter-spacing: 0;
}

.acr-shell {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.acr-sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- แถบบนสุด ---------- */
.acr-topbar {
    background: linear-gradient(100deg, var(--acr-brand-dark) 0%, var(--acr-brand) 65%, #86604c 100%);
    color: #fff;
}

.acr-topbar__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 62px;
    padding-top: 8px;
    padding-bottom: 8px;
    flex-wrap: wrap;
}

.acr-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #fff !important;
    margin-right: auto;
}
.acr-brand:hover { color: #fff !important; opacity: .92; }

.acr-brand__mark {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .22);
    font-size: 18px;
}

.acr-brand__name { display: block; font-weight: 600; font-size: 16px; line-height: 1.2; }
.acr-brand__sub { display: block; font-size: 12px; opacity: .78; line-height: 1.3; }

.acr-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.acr-user__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    max-width: 240px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.acr-user__avatar {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--acr-accent);
    color: #45301f;
    display: grid; place-items: center;
    font-size: 12px; font-weight: 600;
    flex: 0 0 auto;
}

.acr-logout {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    color: var(--acr-brand-dark) !important;
    font-weight: 500;
    transition: transform .12s ease, box-shadow .12s ease;
}
.acr-logout:hover { color: var(--acr-brand-dark) !important; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0, 0, 0, .18); }

/* ---------- เมนูหลัก: ประเภททรัพย์ ---------- */
.acr-navbar {
    background: var(--acr-card);
    border-bottom: 1px solid var(--acr-line);
    box-shadow: var(--acr-shadow-sm);
    position: sticky;
    top: 0;
    z-index: 900;
}

.acr-nav {
    display: flex;
    gap: 8px;
    align-items: stretch;
    overflow-x: auto;
    scrollbar-width: thin;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
}
.acr-nav::-webkit-scrollbar { height: 6px; }
.acr-nav::-webkit-scrollbar-thumb { background: #d7dbe4; border-radius: 6px; }

.acr-nav__item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--acr-line);
    background: #fff;
    color: var(--acr-ink-soft) !important;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.25;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .12s ease;
    flex: 0 0 auto;
}

.acr-nav__item i { font-size: 15px; color: var(--acr-muted); transition: color .15s ease; }

.acr-nav__item:hover {
    background: var(--acr-brand-soft);
    border-color: #ddcfc7;
    color: var(--acr-brand-dark) !important;
    transform: translateY(-1px);
}
.acr-nav__item:hover i { color: var(--acr-brand); }

.acr-nav__item.is-active {
    background: var(--acr-brand);
    border-color: var(--acr-brand);
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(107, 70, 54, .28);
}
.acr-nav__item.is-active i { color: var(--acr-accent); }

.acr-nav__divider {
    width: 1px;
    flex: 0 0 auto;
    margin: 4px 4px;
    background: var(--acr-line);
}

.acr-nav__badge {
    display: inline-block;
    margin-left: 2px;
    padding: 1px 7px;
    border-radius: 999px;
    background: var(--acr-accent);
    color: #4a3313;
    font-size: 11px;
    font-weight: 600;
}

/* ---------- ส่วนหัวของหน้า ---------- */
.acr-page { padding: 18px 0 28px; }

.acr-pagehead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.acr-pagehead__title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.acr-pagehead__title i { color: var(--acr-brand); }
.acr-pagehead__sub { margin: 2px 0 0; color: var(--acr-muted); font-size: 13.5px; }

/* ---------- การ์ด / แผงเครื่องมือ ---------- */
.acr-card {
    background: var(--acr-card);
    border: 1px solid var(--acr-line);
    border-radius: var(--acr-radius);
    box-shadow: var(--acr-shadow-sm);
}

.acr-toolbar {
    background: var(--acr-card);
    border: 1px solid var(--acr-line);
    border-radius: var(--acr-radius);
    box-shadow: var(--acr-shadow-sm);
    padding: 14px 16px;
    margin-bottom: 14px;
}

.acr-toolbar__row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.acr-toolbar__row + .acr-toolbar__row {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--acr-line);
}

.acr-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--acr-muted);
    min-width: 118px;
}
.acr-label i { color: var(--acr-brand); }

/* ---------- ชิป (ทำเล / ตัวกรอง) ---------- */
.acr-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.acr-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid var(--acr-line);
    background: #fbfcfd;
    color: var(--acr-ink-soft) !important;
    font-size: 14px;
    cursor: pointer;
    transition: all .15s ease;
}
.acr-chip:hover { background: var(--acr-brand-soft); border-color: #ddcfc7; color: var(--acr-brand-dark) !important; }
.acr-chip.is-active {
    background: var(--acr-accent-soft);
    border-color: var(--acr-accent);
    color: #8a5a12 !important;
    font-weight: 600;
}
.acr-chip__dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: currentColor; opacity: .85; flex: 0 0 auto;
}

/* ---------- แถบค้นหา ---------- */
.acr-search { position: relative; flex: 1 1 320px; min-width: 240px; }

.acr-search__field {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fbfcfd;
    border: 1px solid var(--acr-line);
    border-radius: var(--acr-radius-sm);
    padding: 0 12px;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.acr-search__field:focus-within {
    background: #fff;
    border-color: var(--acr-brand);
    box-shadow: 0 0 0 3px rgba(107, 70, 54, .12);
}
.acr-search__field i { color: var(--acr-muted); font-size: 14px; }

.acr-search__input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 11px 0;
    font-size: 15px;
    font-family: inherit;
    color: var(--acr-ink);
    min-width: 0;
}
.acr-search__input::placeholder { color: #a6adbb; }

.acr-search__clear {
    border: 0; background: transparent; cursor: pointer;
    color: var(--acr-muted); font-size: 14px; padding: 4px;
    line-height: 1; display: none;
}
.acr-search__clear:hover { color: var(--acr-ink); }
.acr-search.has-value .acr-search__clear { display: block; }

/* กล่องคำแนะนำ (autocomplete) */
.acr-suggest {
    position: absolute;
    left: 0; right: 0; top: calc(100% + 6px);
    background: #fff;
    border: 1px solid var(--acr-line);
    border-radius: var(--acr-radius-sm);
    box-shadow: var(--acr-shadow);
    max-height: 330px;
    overflow-y: auto;
    z-index: 1200;
    display: none;
    padding: 6px;
}
.acr-suggest.is-open { display: block; }

.acr-suggest__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--acr-ink);
}
.acr-suggest__item:hover, .acr-suggest__item.is-cursor { background: var(--acr-brand-soft); }
.acr-suggest__item mark { background: #ffeab8; color: inherit; padding: 0 1px; border-radius: 3px; }
.acr-suggest__icon {
    width: 28px; height: 28px; border-radius: 8px;
    display: grid; place-items: center;
    background: var(--acr-brand-soft); color: var(--acr-brand);
    font-size: 12px; flex: 0 0 auto;
}
.acr-suggest__text { min-width: 0; }
.acr-suggest__name { display: block; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.acr-suggest__meta { display: block; font-size: 12px; color: var(--acr-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.acr-suggest__empty { padding: 14px 12px; color: var(--acr-muted); font-size: 14px; text-align: center; }

/* ---------- ปุ่ม ---------- */
.acr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--acr-radius-sm);
    border: 1px solid transparent;
    font-size: 14.5px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all .15s ease;
    white-space: nowrap;
}
.acr-btn--primary { background: var(--acr-brand); color: #fff !important; box-shadow: 0 4px 12px rgba(107, 70, 54, .22); }
.acr-btn--primary:hover { background: var(--acr-brand-dark); color: #fff !important; transform: translateY(-1px); }
.acr-btn--ghost { background: #fff; border-color: var(--acr-line); color: var(--acr-ink-soft) !important; }
.acr-btn--ghost:hover { background: #f2f4f8; color: var(--acr-ink) !important; }
.acr-btn--block { width: 100%; }

/* ---------- dropdown ---------- */
.acr-select {
    border: 1px solid var(--acr-line);
    border-radius: var(--acr-radius-sm);
    background: #fbfcfd;
    padding: 10px 12px;
    font-size: 14.5px;
    font-family: inherit;
    color: var(--acr-ink);
    outline: 0;
    min-width: 190px;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.acr-select:focus {
    background: #fff;
    border-color: var(--acr-brand);
    box-shadow: 0 0 0 3px rgba(107, 70, 54, .12);
}

/* ---------- ป้ายผลลัพธ์ ---------- */
.acr-result {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--acr-ink-soft);
    background: #f2f4f8;
    border-radius: 999px;
    padding: 7px 14px;
    white-space: nowrap;
}
.acr-result strong { color: var(--acr-brand); font-weight: 600; }
.acr-result.is-empty { background: #fdeceb; color: #9c2d24; }
.acr-result.is-empty strong { color: #9c2d24; }

/* ---------- แผนที่ ---------- */
.acr-mapcard {
    position: relative;
    background: var(--acr-card);
    border: 1px solid var(--acr-line);
    border-radius: var(--acr-radius);
    box-shadow: var(--acr-shadow);
    overflow: hidden;
}

.acr-map {
    width: 100%;
    height: calc(100vh - 300px);
    min-height: 480px;
}

.acr-maplegend {
    position: absolute;
    left: 12px;
    bottom: 22px;
    z-index: 5;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--acr-line);
    border-radius: var(--acr-radius-sm);
    box-shadow: var(--acr-shadow-sm);
    padding: 10px 12px;
    font-size: 13px;
}
.acr-maplegend__title { font-weight: 600; font-size: 12px; color: var(--acr-muted); margin-bottom: 6px; }
.acr-maplegend__row { display: flex; align-items: center; gap: 8px; padding: 2px 0; color: var(--acr-ink-soft); }
.acr-maplegend__pin { width: 12px; height: 12px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); flex: 0 0 auto; }

/* ---------- InfoWindow ---------- */
.acr-iw { max-width: 250px; font-family: 'Prompt', 'Noto Sans Thai', 'Segoe UI', sans-serif; }
.acr-iw__img { width: 100%; height: 140px; object-fit: cover; border-radius: 8px; display: block; background: #eef1f5; }
.acr-iw__title { font-weight: 600; font-size: 15px; margin: 8px 0 2px; color: #1e2430; }
.acr-iw__meta { font-size: 13px; color: #7b8598; margin: 0 0 8px; }
.acr-iw__tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 9px; }
.acr-iw__tag { font-size: 11.5px; padding: 2px 9px; border-radius: 999px; background: #f3ece8; color: #4d3126; }
.acr-iw__link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13.5px; font-weight: 500; color: #6b4636 !important;
}

/* ---------- รายการเลือก เมื่อหมุดหนึ่งจุดมีหลายทรัพย์ ---------- */
.acr-iwlist { width: 268px; max-width: 100%; font-family: 'Prompt', 'Noto Sans Thai', 'Segoe UI', sans-serif; }
.acr-iwlist__head {
    display: flex; align-items: center; gap: 7px;
    font-size: 12.5px; color: var(--acr-muted);
    padding: 2px 2px 9px;
    border-bottom: 1px solid var(--acr-line);
    margin-bottom: 6px;
}
.acr-iwlist__head strong { color: var(--acr-brand); }
.acr-iwlist__body { max-height: 268px; overflow-y: auto; margin-right: -4px; padding-right: 4px; }

.acr-iwlist__item {
    display: flex; align-items: center; gap: 10px;
    width: 100%; text-align: left;
    padding: 8px 8px; margin-bottom: 2px;
    background: none; border: 0; border-radius: 9px;
    font: inherit; color: var(--acr-ink);
    cursor: pointer;
}
.acr-iwlist__item:hover, .acr-iwlist__item:focus-visible { background: var(--acr-brand-soft); outline: none; }
.acr-iwlist__icon {
    width: 28px; height: 28px; border-radius: 8px; flex: 0 0 auto;
    display: grid; place-items: center;
    background: var(--acr-brand-soft); color: var(--acr-brand);
    font-size: 12px;
}
.acr-iwlist__item:hover .acr-iwlist__icon { background: #fff; }
.acr-iwlist__text { min-width: 0; flex: 1 1 auto; }
.acr-iwlist__name { display: block; font-size: 13.5px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.acr-iwlist__meta { display: block; font-size: 12px; color: var(--acr-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.acr-iwlist__go { color: var(--acr-muted); font-size: 11px; flex: 0 0 auto; }

/* ปุ่มย้อนกลับไปรายการ หลังเลือกดูทรัพย์ตัวใดตัวหนึ่ง */
.acr-iwback {
    display: inline-flex; align-items: center; gap: 6px;
    margin-bottom: 8px; padding: 4px 10px 4px 7px;
    background: var(--acr-brand-soft); border: 0; border-radius: 999px;
    font-family: inherit; font-size: 12.5px; color: var(--acr-brand);
    cursor: pointer;
}
.acr-iwback:hover { background: #e9ded7; }

/* ---------- Leaflet: ปรับหน้าตาให้เข้ากับส่วนอื่นของเว็บ ----------
   ไฟล์นี้โหลดหลัง leaflet.css จึงเขียนทับค่าเริ่มต้นได้เลย */
.leaflet-container {
    font-family: 'Prompt', 'Noto Sans Thai', 'Segoe UI', Tahoma, sans-serif;
    background: #e8ecef;   /* สีพื้นระหว่างที่ tile ยังโหลดไม่เสร็จ */
}

/* กล่องรายละเอียด (แทน InfoWindow ของ Google) */
.acr-popup .leaflet-popup-content-wrapper {
    border-radius: var(--acr-radius-sm);
    box-shadow: var(--acr-shadow);
    padding: 4px;
    color: var(--acr-ink);
}
.acr-popup .leaflet-popup-content { margin: 10px 12px; line-height: 1.55; }
.acr-popup .leaflet-popup-content p { margin: 0 0 8px; }
.acr-popup .leaflet-popup-close-button {
    width: 26px; height: 26px;
    padding: 4px 0 0;
    font-size: 20px;
    color: var(--acr-muted);
}
.acr-popup .leaflet-popup-close-button:hover { color: var(--acr-ink); background: none; }
.acr-popup .leaflet-popup-tip { box-shadow: none; }

/* ป้ายชื่อตอนเอาเมาส์ชี้หมุด */
.acr-tip.leaflet-tooltip {
    background: rgba(30, 36, 48, .92);
    border: 0;
    border-radius: 7px;
    box-shadow: var(--acr-shadow-sm);
    color: #fff;
    font-size: 12.5px;
    padding: 4px 9px;
    white-space: nowrap;
}
.acr-tip.leaflet-tooltip-top:before { border-top-color: rgba(30, 36, 48, .92); }

/* ปุ่มซูม / ปุ่มเต็มจอ / ตัวเลือกชั้นแผนที่ */
.leaflet-bar a {
    color: var(--acr-ink-soft);
    border-bottom-color: var(--acr-line);
}
.leaflet-bar a:hover { color: var(--acr-brand); background: var(--acr-brand-soft); }
.acr-fs a { display: grid; place-items: center; font-size: 13px; }

.leaflet-control-layers {
    border-radius: var(--acr-radius-sm);
    box-shadow: var(--acr-shadow-sm);
    color: var(--acr-ink-soft);
}
.leaflet-control-layers-list { font-size: 13.5px; padding: 4px 8px 4px 4px; }
.leaflet-control-layers label { margin-bottom: 2px; font-weight: 400; }

.leaflet-control-attribution {
    font-size: 11px;
    background: rgba(255, 255, 255, .82);
}
.leaflet-control-attribution a { color: var(--acr-muted) !important; }

/* ---------- หน้าแรก (dashboard) ---------- */
.acr-hero {
    background: linear-gradient(115deg, var(--acr-brand-dark), var(--acr-brand) 55%, #8d6650);
    color: #fff;
    border-radius: var(--acr-radius);
    padding: 30px 32px;
    margin-bottom: 22px;
    box-shadow: var(--acr-shadow);
}
.acr-hero h1 { color: #fff; font-size: 26px; font-weight: 600; margin: 0 0 6px; }
.acr-hero p { margin: 0; opacity: .85; font-size: 14.5px; max-width: 640px; }

.acr-sectiontitle {
    display: flex; align-items: center; gap: 9px;
    font-size: 15px; font-weight: 600; color: var(--acr-ink-soft);
    margin: 24px 0 12px;
}
.acr-sectiontitle i { color: var(--acr-brand); }

.acr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
    gap: 16px;
}

.acr-tile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: var(--acr-card);
    border: 1px solid var(--acr-line);
    border-radius: var(--acr-radius);
    box-shadow: var(--acr-shadow-sm);
    color: var(--acr-ink) !important;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    box-sizing: border-box;
}
.acr-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--acr-shadow);
    border-color: #ddcfc7;
    color: var(--acr-ink) !important;
}
.acr-tile__icon {
    width: 46px; height: 46px; border-radius: 13px;
    display: grid; place-items: center; font-size: 20px;
    background: var(--acr-brand-soft); color: var(--acr-brand);
}
.acr-tile__title { font-weight: 600; font-size: 16.5px; }
.acr-tile__desc { font-size: 13.5px; color: var(--acr-muted); flex: 1; }
.acr-tile__go { font-size: 13.5px; font-weight: 500; color: var(--acr-brand); display: inline-flex; align-items: center; gap: 6px; }
.acr-tile--feature { background: linear-gradient(135deg, #fff 60%, var(--acr-accent-soft)); border-color: #f2dcc0; }
.acr-tile--feature .acr-tile__icon { background: var(--acr-accent); color: #543a13; }

/* ---------- แจ้งเตือน ---------- */
.acr-note {
    display: flex; gap: 10px; align-items: flex-start;
    padding: 12px 14px; border-radius: var(--acr-radius-sm);
    background: var(--acr-accent-soft); border: 1px solid #f4dcb8;
    color: #7a5314; font-size: 13.5px;
}
.acr-note i { margin-top: 3px; }
.acr-note--error { background: #fdecea; border-color: #f5c6c0; color: #9c2d24; }

/* ---------- หน้า login ---------- */
.acr-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    background:
        radial-gradient(1100px 520px at 12% -8%, rgba(247, 161, 62, .22), transparent 62%),
        linear-gradient(140deg, #3d271d 0%, #6b4636 58%, #8b6551 100%);
}
.acr-login__card {
    width: 100%;
    max-width: 410px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(20, 12, 8, .35);
    padding: 34px 32px 28px;
}
.acr-login__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.acr-login__mark {
    width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
    background: var(--acr-brand); color: #fff; font-size: 20px;
}
.acr-login__title { font-size: 19px; font-weight: 600; line-height: 1.25; margin: 0; }
.acr-login__subtitle { font-size: 13px; color: var(--acr-muted); margin: 0; }
.acr-login__group { margin-bottom: 16px; }
.acr-login__label { display: block; font-size: 13px; font-weight: 500; color: var(--acr-ink-soft); margin-bottom: 6px; }
.acr-login__card input[type="text"],
.acr-login__card input[type="password"] {
    width: 100%;
    border: 1px solid var(--acr-line);
    border-radius: var(--acr-radius-sm);
    padding: 11px 13px;
    font-size: 15px;
    font-family: inherit;
    color: var(--acr-ink);
    background: #fbfcfd;
    outline: 0;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
    box-sizing: border-box;
}
.acr-login__card input[type="text"]:focus,
.acr-login__card input[type="password"]:focus {
    background: #fff;
    border-color: var(--acr-brand);
    box-shadow: 0 0 0 3px rgba(107, 70, 54, .12);
}
.acr-login__submit {
    width: 100%;
    border: 0;
    border-radius: var(--acr-radius-sm);
    background: var(--acr-brand);
    color: #fff;
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 500;
    padding: 12px 16px;
    cursor: pointer;
    transition: background .15s ease, transform .12s ease;
}
.acr-login__submit:hover { background: var(--acr-brand-dark); transform: translateY(-1px); }
.acr-login__hint {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed var(--acr-line);
    font-size: 12.5px;
    color: var(--acr-muted);
    line-height: 1.75;
}
.acr-login__hint b { color: var(--acr-ink-soft); display: block; margin-bottom: 4px; font-weight: 600; }

/* ---------- responsive ---------- */
@media (max-width: 991px) {
    .acr-shell { padding: 0 14px; }
    .acr-label { min-width: 100%; }
    .acr-map { height: 62vh; min-height: 380px; }
    .acr-hero { padding: 24px 20px; }
    .acr-hero h1 { font-size: 21px; }
}

@media (max-width: 640px) {
    .acr-topbar__inner { min-height: 56px; }
    .acr-brand__sub { display: none; }
    .acr-user__chip { max-width: 130px; }
    .acr-pagehead__title { font-size: 19px; }
    .acr-toolbar { padding: 12px; }
    .acr-search { flex: 1 1 100%; }
    .acr-maplegend { display: none; }
}

/* ---------- print ---------- */
@media print {
    .acr-topbar, .acr-navbar, .acr-toolbar { display: none !important; }
}
