/* Map container positioning */
#property-map-container {
    display: flex;
    height: 100vh;
    position: relative;
  }
  
  /* Sidebar wrapper for listing toggle */
  #property-list {
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    right: 1.5rem;    /* adjust inset */
    transform: translateY(-50%);
    z-index: 1000;
  }
  
  /* Property Search + Brand Overlay */
  .property-search {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1050;
  }
  .property-search .map-brand {
    background: #16a34a;
    color: #00FFFF;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(22,163,74,0.2);
    transition: background 0.2s, transform 0.2s;
    margin-bottom: 0.5rem;
  }
  .property-search .map-brand:hover {
    background: #15803d;
    transform: translateY(-1px);
  }
  .property-search .search-wrapper {
    display: flex;
  }
  .property-search input {
    width: 280px;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 999px 0 0 999px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    font-size: 1rem;
  }
  .property-search input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(22,163,74,0.6);
  }
  .property-search button {
    background: #16a34a;
    border: none;
    padding: 0 1rem;
    border-radius: 0 999px 999px 0;
    box-shadow: 0 2px 6px rgba(22,163,74,0.2);
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
  }
  .property-search button:hover {
    background: #15803d;
  }
/* ─── Geo Warning Overlay ─────────────────────────────── */
.geo-warning-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 15, 30, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.geo-warning-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ─── Geo Warning Overlay (Transparent) ─────────────────────────────── */
.geo-warning-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 15, 30, 0.35);     /* More transparent to let map show */
  backdrop-filter: blur(4px);           /* Soft blur for focus */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.geo-warning-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ─── Geo Warning Modal ─────────────────────────────── */
.geo-warning-modal {
  background: rgba(30, 41, 59, 0.9);       /* semi-transparent dark slate */
  color: #f0f9ff;
  border: 1px solid rgba(0,217,255,0.15);
  padding: 2rem;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,212,255,0.15);
  backdrop-filter: blur(12px);
  animation: fadeSlideIn 0.4s ease-out;
  text-align: center;
}

/* ─── Modal Text ─────────────────────────────── */
.geo-warning-modal p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cbe9ff;
  text-shadow: 0 0 4px rgba(0,212,255,0.1);
  margin: 0 0 1.5rem;
}

/* ─── OK Button ─────────────────────────────── */
.geo-warning-modal button {
  background: linear-gradient(to right, #3ecf8e, #26b07c);
  color: #001d16;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(62,207,142,0.4);
  transition: background 0.3s ease, transform 0.3s ease;
}

.geo-warning-modal button:hover {
  background: linear-gradient(to right, #26b07c, #3ecf8e);
  transform: translateY(-3px);
  box-shadow: 0 0 16px rgba(62,207,142,0.6);
}

.geo-warning-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


/* ─── Animation ─────────────────────────────── */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

