/* MoveMe Right – custom styles */

body {
  background-color: #f8f9fa;
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar-brand {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

/* ── Property card ────────────────────────────────────────── */
.property-card {
  transition: box-shadow 0.15s ease;
}
.property-card:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12) !important;
}

.property-img {
  object-fit: cover;
  width: 100%;
  height: 160px;
  border-radius: 0.375rem 0 0 0.375rem;
}

@media (max-width: 575.98px) {
  .property-img {
    border-radius: 0.375rem 0.375rem 0 0;
    height: 200px;
  }
}

.property-img-placeholder {
  min-height: 150px;
  border-radius: 0.375rem 0 0 0.375rem;
}

@media (max-width: 575.98px) {
  .property-img-placeholder {
    border-radius: 0.375rem 0.375rem 0 0;
  }
}

/* ── Price badge ──────────────────────────────────────────── */
.price-badge {
  font-size: 1.05rem;
}

/* ── Subtle Bootstrap badge colours (not in BS 5.2) ─────── */
.badge.bg-success-subtle {
  background-color: #d1e7dd !important;
  color: #0a3622 !important;
}
.badge.bg-warning-subtle {
  background-color: #fff3cd !important;
  color: #664d03 !important;
}
.badge.bg-danger-subtle {
  background-color: #f8d7da !important;
  color: #58151c !important;
}
.badge.bg-secondary-subtle {
  background-color: #e2e3e5 !important;
  color: #2b2d2f !important;
}

/* ── Price history toggle ─────────────────────────────────── */
.price-history-toggle {
  cursor: pointer;
  user-select: none;
}
.price-history-toggle:hover {
  text-decoration: underline;
}

/* ── Map ─────────────────────────────────────────────────── */
#map {
  height: 520px;
  border-radius: 0 0 0.375rem 0.375rem;
}

/* ── Filter card ─────────────────────────────────────────── */
.filter-card {
  border-radius: 0.5rem;
}

/* ── Search tabs row ─────────────────────────────────────── */
#search-tabs {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  flex-wrap: nowrap !important;
  scrollbar-width: none;
}
#search-tabs::-webkit-scrollbar {
  display: none;
}
