/* ---- BRAND VARIABLES ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --lw-navy: #002147;
    --lw-dark: #051F2E;
    --lw-teal: #2ec4b6;
    --lw-blue: #3085C3;
    --lw-light-bg: #F7F9FB;
    --lw-card-bg: #0A3055;
    --lw-white: #ffffff;
    --lw-text: #1a1a2e;
    --lw-text-muted: #5a6877;
    --lw-font: 'Montserrat', sans-serif;
}

html {
  font-size: 14px;
}

body {
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* ---- SITE HEADER ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #fff;
}

.site-header--blue {
    background-color: var(--lw-blue, #3085C3);
}

/* Nav layout — logo far left, links far right */
.site-nav {
    padding: 0.75rem 0;
}

.site-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.site-nav-brand img {
    height: 42px;
    width: auto;
}

.site-nav-links {
    gap: 0.5rem;
}

.site-nav-links .nav-link {
    font-weight: 600;
    font-size: 1rem;
    padding: 0.4rem 0.75rem;
}

/* ---- White variant ---- */
.site-nav--white {
    background: #fff;
    border-bottom: 1px solid #eef1f4;
}

.site-nav--white .nav-link {
    color: var(--lw-text, #1a1a2e);
}

.site-nav--white .nav-link:hover {
    color: var(--lw-blue, #3085C3);
}

/* ---- Transparent variant (home page only) ---- */
.site-header--transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1030;
}

.site-nav--transparent {
    background: transparent;
    border-bottom: none;
}

.site-nav.site-nav--transparent .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14pt;
    line-height: 100%;
    letter-spacing: 0;
    color: #3085C3 !important;
}

.site-nav--transparent .nav-link:hover {
    color: #276faa;
}

.site-nav--transparent .dropdown-menu {
    background: #fff;
}

.site-nav--transparent .dropdown-item {
    color: var(--lw-text, #1a1a2e);
}

.site-nav--transparent .site-nav-toggler {
    border-color: #3085C3;
}

.site-nav--transparent .navbar-toggler-icon {
    filter: none;
}

/* ---- Blue variant ---- */
.site-nav--blue {
    background: var(--lw-blue, #3085C3);
    border-bottom: none;
}

.site-nav--blue .nav-link {
    color: #fff;
}

.site-nav--blue .nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.site-nav--blue .dropdown-menu {
    background: #fff;
}

.site-nav--blue .dropdown-item {
    color: var(--lw-text, #1a1a2e);
}

/* User dropdown li — align first name next to hamburger button */
.site-nav-user {
    display: flex;
    align-items: center;
}

.site-nav-user-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--lw-blue, #3085C3);
    margin-left: 0.5rem;
    padding: 0.4rem 0.25rem 0.4rem 0.5rem;
    white-space: nowrap;
}

.site-nav--blue .site-nav-user-name {
    color: #fff;
}

/* Envelope-in-circle badge shown when user has unread messages */
.site-nav-msg-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--lw-blue, #3085C3);
    color: #fff;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.site-nav--blue .site-nav-msg-badge {
    background: #fff;
    color: var(--lw-blue, #3085C3);
}

/* Hamburger circle button — user menu trigger (all themes when authenticated) */
.site-nav-hamburger {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.2s, border-color 0.2s;
    margin-left: 0.5rem;
    padding: 0;
}

.site-nav-hamburger:hover {
    background: rgba(255, 255, 255, 0.9);
}

.site-nav-hamburger::after {
    display: none;
}

/* On white/transparent headers, give the circle a visible outline */
.site-nav--white .site-nav-hamburger,
.site-nav--transparent .site-nav-hamburger {
    border-color: #d8dee4;
}

.site-nav--white .site-nav-hamburger:hover,
.site-nav--transparent .site-nav-hamburger:hover {
    background: #f2f4f7;
}

/* User dropdown menu — matches mock-up: rounded card, spacious rows, icons */
.site-nav-user-menu {
    min-width: 260px;
    padding: 0.5rem 0;
    border: 1px solid #e5e8ed;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    margin-top: 0.5rem;
}

.site-nav-user-menu .dropdown-item,
.site-nav-user-menu form .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--lw-text, #1a1a2e);
    background: transparent;
    border: 0;
    width: 100%;
    text-align: left;
}

.site-nav-user-menu .dropdown-item:hover,
.site-nav-user-menu .dropdown-item:focus {
    background: #f5f7fa;
    color: var(--lw-blue, #3085C3);
}

.site-nav-user-menu li + li {
    border-top: 1px solid #eef1f4;
}

.site-nav-user-menu form {
    margin: 0;
}

.site-nav-user-icon {
    width: 20px;
    font-size: 1.05rem;
    color: var(--lw-text, #1a1a2e);
    text-align: center;
}

/* Mobile toggler for blue theme */
.site-nav--blue .site-nav-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.site-nav--blue .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}


body {
    margin-bottom: 0;
}

/*  https://www.youtube.com/watch?v=6Kq3QZGdr7s */
Lease_TBL {
    width: 100px;
    border-collapes: collaose;
}
/* Lease_TBL */

Lease_tbl, tr, tbody, td {
    border: 1px solid black
}
/* Lease_tbl, tr, tbody, td*/

.LeaseImage-image {
    width: 150px;
    height: 150px;
    /* to round
    border-radius: 50%;
    overflow:hidden;
    */
}
/* LeaseImage*/

.LeaseImage-image img{
    width: 100%;
    height:100%;
    object-fit: cover;
}
/* .LeaseImage =image img*/

.form-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px; /* optional spacing between groups */
}
/* .form-stack*/
.form-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    width: 160px;
}
/* .form-row */

    .form-row label {
        min-width: 120px; /* adjust as needed */
    }
/* .form-row label*/

/* ============================================================
   PHOTO MANAGER — Shared component (LeaseImageMgr + Lease)
   Upload zone, photo list, drag/drop states
   ============================================================ */

/* Upload zone — drag-drop area */
.upload-zone {
    border: 2px dashed #2ec4b6; border-radius: 12px;
    padding: 48px 24px; text-align: center; background: #f9fffe;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    cursor: pointer; min-height: 300px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.upload-zone:hover { background: #eefbf9; border-color: #20a99d; }
.upload-zone.drag-over {
    background: #d5f5f0; border-color: #17a08e;
    box-shadow: 0 0 0 4px rgba(46,196,182,0.15);
}

/* Photo item — sortable card with drag/animation states */
.photo-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px; background: #fff;
    border: 2px solid #e8ecf0; border-radius: 10px;
    transition: border-color 0.25s, box-shadow 0.25s, opacity 0.3s, transform 0.25s;
    position: relative;
}
.photo-item:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.photo-item.primary {
    border-color: #2ec4b6;
    background: linear-gradient(135deg, #f0fdfb 0%, #ffffff 100%);
    box-shadow: 0 2px 12px rgba(46,196,182,0.12);
}
.photo-item.dragging { opacity: 0.4; transform: scale(0.98); }
.photo-item.drag-over-above { border-top: 3px solid #2ec4b6; }
.photo-item.drag-over-below { border-bottom: 3px solid #2ec4b6; }
.photo-item.removing {
    opacity: 0; transform: translateX(40px) scale(0.95);
    max-height: 0; padding: 0; margin: 0; overflow: hidden;
    transition: all 0.35s ease-out;
}

/* Drag handle */
.photo-item .drag-handle {
    cursor: grab; color: #c0c8d0; font-size: 16px; padding: 4px; flex-shrink: 0;
    transition: color 0.15s;
}
.photo-item .drag-handle:active { cursor: grabbing; }
.photo-item:hover .drag-handle { color: #8895a4; }

/* Thumbnail */
.photo-item .photo-thumb {
    width: 64px; height: 64px; border-radius: 6px;
    overflow: hidden; flex-shrink: 0; background: #f0f2f5;
}
.photo-item .photo-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Photo name input — inline editable */
.photo-item .photo-name-input {
    border: 1px solid transparent; border-radius: 4px;
    padding: 4px 8px; font-size: 14px; font-weight: 500;
    color: #2c3e50; background: transparent;
    transition: border-color 0.15s, background 0.15s; width: 100%;
}
.photo-item .photo-name-input:hover { border-color: #dde1e6; background: #fafbfc; }
.photo-item .photo-name-input:focus {
    border-color: #2ec4b6; background: #fff; outline: none;
    box-shadow: 0 0 0 2px rgba(46,196,182,0.15);
}

/* Primary badge */
.primary-badge {
    display: inline-block; font-size: 11px; font-weight: 600;
    color: #2ec4b6; background: rgba(46,196,182,0.1);
    padding: 2px 8px; border-radius: 4px;
    text-transform: uppercase; letter-spacing: 0.5px; width: fit-content;
}

/* Photo action buttons */
.photo-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.photo-actions button {
    border: none; background: transparent; color: #8895a4;
    font-size: 14px; width: 32px; height: 32px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.15s, color 0.15s;
}
.photo-actions button:hover { background: #f0f2f5; color: #2c3e50; }
.photo-actions .btn-delete-photo:hover { background: #fde8e8; color: #e74c3c; }

/* Upload progress items (created by JS) */
.upload-progress-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px; background: #fff;
    border: 1px solid #e8ecf0; border-radius: 8px; margin-bottom: 8px;
}
.upload-progress-item .upload-thumb-preview {
    width: 40px; height: 40px; border-radius: 4px; object-fit: cover;
    flex-shrink: 0; background: #f0f2f5;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.upload-progress-item .upload-thumb-preview img { width: 100%; height: 100%; object-fit: cover; }
.upload-progress-item .upload-file-info { flex: 1; min-width: 0; }
.upload-progress-item .upload-file-name {
    font-size: 13px; font-weight: 500; color: #2c3e50;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.upload-progress-item .upload-file-status {
    font-size: 12px; color: #2ec4b6; font-weight: 500; white-space: nowrap;
}
.upload-progress-item .upload-file-status.error { color: #e74c3c; }

@media (max-width: 768px) {
    .upload-zone { min-height: 200px; padding: 32px 16px; }
    .photo-item .photo-thumb { width: 48px; height: 48px; }
    .photo-item .photo-name-input { font-size: 13px; }
    .photo-actions button { width: 28px; height: 28px; font-size: 12px; }
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
    background: var(--lw-dark);
    color: var(--lw-white);
    padding: 4rem 2rem 2rem;
}
.footer-inner {
    display: flex; justify-content: space-between;
    max-width: 1280px; margin: 0 auto; gap: 3rem; flex-wrap: wrap;
}
.footer-brand img {
    height: 32px; width: auto; margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}
.footer-col h5 {
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 1.25rem; opacity: 0.7;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a {
    color: rgba(255,255,255,0.75); text-decoration: none;
    font-size: 0.9rem; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--lw-teal); }
.footer-bottom {
    max-width: 1280px; margin: 2.5rem auto 0; padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
}
.footer-bottom span { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-bottom-links a {
    color: rgba(255,255,255,0.5); text-decoration: none;
    font-size: 0.85rem; margin-left: 1.5rem; transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--lw-teal); }

@media (max-width: 992px) {
    .footer-inner { flex-direction: column; gap: 2rem; }
}
@media (max-width: 576px) {
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links a { margin-left: 0; margin-right: 1.5rem; }
}

/* ============================================================
   STATIC INFO PAGES (Mission, Story, FAQ, Safety, Roommate Sync...)
   Shared brand-consistent layout — single source of truth so every
   info page reads the same.
   ============================================================ */
.lw-info-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 3rem 1.25rem 4rem;
    color: var(--lw-text, #1a1a2e);
    font-family: var(--lw-font, 'Montserrat', sans-serif);
}
.lw-info-page h1 {
    color: var(--lw-dark, #051F2E);
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
.lw-info-page p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: var(--lw-text-muted, #5a6877);
}
.lw-info-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--lw-blue, #3085C3);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.lw-info-lead {
    color: var(--lw-text-muted, #5a6877);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.25rem;
}
.lw-info-pull {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--lw-dark, #051F2E);
    border-left: 4px solid var(--lw-blue, #3085C3);
    padding: 0.4rem 0 0.4rem 1.1rem;
    margin: 2rem 0;
    background: var(--lw-light-bg, #F7F9FB);
    border-radius: 0 8px 8px 0;
}

/* Card-style section block used inside info pages */
.lw-info-section {
    border: 1px solid #e6ebf1;
    border-radius: 14px;
    background: #fff;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}
.lw-info-section h2 {
    color: var(--lw-dark, #051F2E);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 0 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.lw-info-section ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--lw-text-muted, #5a6877);
    font-size: 1rem;
    line-height: 1.7;
}
.lw-info-section li { margin-bottom: 0.25rem; }
.lw-info-section p:last-child { margin-bottom: 0; }

/* Small icon swatch used next to section headings */
.lw-info-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: #eaf4fb;
    color: var(--lw-blue, #3085C3);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.95rem; flex-shrink: 0;
}

/* CTA pill row — used for the "Avoid Scams / Report" footer-style links */
.lw-info-cta-row {
    display: flex; flex-wrap: wrap; gap: 0.75rem;
    margin-top: 2rem;
}
.lw-info-cta {
    flex: 1 1 220px;
    display: inline-flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.25rem;
    border: 1px solid #d6dde5;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    font-weight: 700;
    color: var(--lw-dark, #051F2E);
    transition: border-color 0.15s, transform 0.15s, color 0.15s;
}
.lw-info-cta:hover {
    border-color: var(--lw-blue, #3085C3);
    color: var(--lw-blue, #3085C3);
    transform: translateY(-1px);
    text-decoration: none;
}
.lw-info-cta i { color: var(--lw-blue, #3085C3); }

/* Numbered step list (used by Roommate Sync and onboarding-style content) */
.lw-info-steps {
    counter-reset: lwinfostep;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
}
.lw-info-steps li {
    counter-increment: lwinfostep;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    border: 1px solid #e6ebf1;
    border-radius: 12px;
    background: #fff;
    color: var(--lw-text, #1a1a2e);
    font-size: 1rem;
    line-height: 1.55;
}
.lw-info-steps li::before {
    content: counter(lwinfostep);
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--lw-blue, #3085C3);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex; align-items: center; justify-content: center;
    margin-top: 0.05rem;
}

/* Wide variant for long-form legal pages (Privacy, Terms) */
.lw-info-page--wide { max-width: 940px; }

/* "Last updated: ..." meta line beneath the H1 */
.lw-info-meta {
    display: block;
    color: var(--lw-text-muted, #5a6877);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Top-level section heading inside long policy pages (e.g., "1. Scope") */
.lw-info-page h2.lw-info-h2 {
    color: var(--lw-dark, #051F2E);
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.3;
    margin: 2.5rem 0 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eef1f5;
}
.lw-info-page h2.lw-info-h2:first-of-type { border-top: none; padding-top: 0; }

/* Sub-section heading (e.g., "1.1 Marketplace Only") */
.lw-info-page h3.lw-info-h3 {
    color: var(--lw-dark, #051F2E);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.4;
    margin: 1.4rem 0 0.5rem;
}

/* Highlighted callout (e.g., "In Short", "No Legal Advice") */
.lw-info-callout {
    background: var(--lw-light-bg, #F7F9FB);
    border-left: 4px solid var(--lw-blue, #3085C3);
    border-radius: 0 12px 12px 0;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0 1.75rem;
    color: var(--lw-text, #1a1a2e);
}
.lw-info-callout strong { color: var(--lw-dark, #051F2E); }
.lw-info-callout p { color: var(--lw-text, #1a1a2e); margin-bottom: 0.5rem; }
.lw-info-callout p:last-child { margin-bottom: 0; }
.lw-info-callout ul {
    margin: 0.5rem 0 0; padding-left: 1.1rem;
    color: var(--lw-text, #1a1a2e); line-height: 1.65;
}

/* All-caps legalese block (disclaimers / liability) — readable but visibly distinct */
.lw-info-legal {
    text-transform: none;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--lw-text-muted, #5a6877);
}
.lw-info-legal p {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    color: var(--lw-text-muted, #5a6877);
}

/* Bulleted body lists outside of cards */
.lw-info-page > ul,
.lw-info-page > ol {
    color: var(--lw-text-muted, #5a6877);
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 576px) {
    .lw-info-page    { padding: 2rem 1rem 3rem; }
    .lw-info-page h1 { font-size: 1.75rem; }
    .lw-info-page p  { font-size: 1rem; }
    .lw-info-lead    { font-size: 1rem; }
    .lw-info-pull    { font-size: 1.05rem; }
    .lw-info-section { padding: 1.25rem 1.25rem; }
    .lw-info-section h2 { font-size: 1.05rem; }
    .lw-info-section ul { font-size: 0.95rem; }
    .lw-info-cta     { flex: 1 1 100%; }
    .lw-info-steps li { padding: 0.85rem 1rem; }
    .lw-info-page h2.lw-info-h2 { font-size: 1.2rem; }
    .lw-info-page h3.lw-info-h3 { font-size: 1rem; }
}

/* ---- PROPERTY WIZARD ---- */

.wizard-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.wizard-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.wizard-step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    background: #dee2e6;
    color: #6c757d;
    transition: background 0.3s, color 0.3s;
}

.wizard-step-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #6c757d;
    transition: color 0.3s;
}

.wizard-step.active .wizard-step-circle,
.wizard-step.completed .wizard-step-circle {
    background: #3283c0;
    color: #fff;
}

.wizard-step.active .wizard-step-label,
.wizard-step.completed .wizard-step-label {
    color: #3283c0;
}

.wizard-step-line {
    width: 60px;
    height: 2px;
    background: #dee2e6;
    margin: 0 0.75rem;
    transition: background 0.3s;
}

.wizard-step-line.completed {
    background: #3283c0;
}

.wizard-panel {
    display: none;
}

.wizard-panel.active {
    display: block;
}

.wizard-nav {
    display: flex;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid #eee;
    margin-top: 1.5rem;
}

.wizard-nav-right {
    margin-left: auto;
}

/* Toast notification */
.wizard-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1080;
    min-width: 220px;
}

/* Google Map on Step 2 */
.property-map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #dee2e6;
    margin-top: 1rem;
}

.property-map-container iframe {
    width: 100%;
    height: 280px;
    border: 0;
}

.property-map-placeholder {
    width: 100%;
    height: 280px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .wizard-steps { gap: 0; }
    .wizard-step-line { width: 30px; margin: 0 0.4rem; }
    .wizard-step-label { font-size: 0.75rem; }
}

/* ---- Profile avatar (used on ContactInfo and Header) ---- */
img.avatar,
div.avatar,
span.avatar {
    border-radius: 50% !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 600;
    line-height: 1;
    vertical-align: middle;
    padding: 0 !important;
    box-sizing: border-box !important;
}
img.avatar { object-fit: cover !important; }
img.avatar--32,  div.avatar--32,  span.avatar--32  { width: 32px !important;  height: 32px !important;  font-size: 0.85rem; }
img.avatar--36,  div.avatar--36,  span.avatar--36  { width: 36px !important;  height: 36px !important;  font-size: 0.9rem; }
img.avatar--96,  div.avatar--96,  span.avatar--96  { width: 96px !important;  height: 96px !important;  font-size: 2.2rem; }
.avatar--fallback { background: #222; color: #fff; }