/* light purple color rgb code: r:158, g:109, b:224  */
/* dark purple color rgb code: r:80, g:63, b:113  */

@charset "UTF-8";
:root {
  --star-size: 18px;
  --star-size-big: 28px;
  --star-color: #fff;
  --star-background: #fc0;
}

.Stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: var(--star-size);
  font-family: Times;
  line-height: 1;
}
.Stars::before {
  content: "★★★★★";
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
  -webkit-background-clip: text;
    background-clip: text;
  -webkit-text-fill-color: transparent;
}
.StarsBig {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: var(--star-size-big);
  font-family: Times;
  line-height: 1;
}
.StarsBig::before {
  content: "★★★★★";
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
  -webkit-background-clip: text;
    background-clip: text;
  -webkit-text-fill-color: transparent;
}

* {
  position: relative;
  box-sizing: border-box;
}


.range input {
  margin-top:10%;
  -webkit-transform:rotate(90deg);
  -moz-transform:rotate(90deg);
  -o-transform:rotate(90deg);
  transform:rotate(270deg);
};






.slidecontainer {
  width: 100%;
  -webkit-appearance: none;
    appearance: auto;
}

.slider {
  -webkit-appearance: none;
    appearance: auto;
  width: 100%;
  height: 25px;
  background: #ffffff;
  outline: none;
  opacity: 0.5;
  -webkit-transition: .2s;
  transition: opacity .3s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
    appearance: none;
  width: 35px;
  height: 35px;
  background: #0acb8e;
  outline: none;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 35px;
  height: 35px;
  background: #0acb8e;
  outline: none;
  cursor: pointer;
  position: relative
}

section.range-slider {
  position: relative;
  width: 200px;
  height: 25px;
  margin-left: 22px;
  margin-top: 0px;
  margin-bottom: 35px;
  text-align: center;
}

section.range-slider input {
  pointer-events: none;
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 25px;
  width: 200px;
  outline: none;
  height: 25px;
  margin: 0;
  padding: 0;
}

section.range-slider input::-webkit-slider-thumb {
  pointer-events: all;
  position: relative;
  z-index: 1;
  outline: 0;
}

section.range-slider input::-moz-range-thumb {
  pointer-events: all;
  position: relative;
  z-index: 10;
  -moz-appearance: none;
    appearance: none;
  width: 11px;
}

.hidden {
  display: none;
}

.input-group {
  display: flex;
  align-items: center;
}

.input-group input{
  display: block;
  width: 100%;
  /* padding: 0.875rem 1.375rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  color: var(--bs-body-color);
  appearance: none;
  background-color: color(black);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: 2px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; */
}

.input-group i {
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}



.dropdown-toggle::after {
    display: none; /* Remove the default arrow */
}
.dropdown-label {
    cursor: pointer;
    padding: 10px;
    border-radius: 0.25rem;
    display: inline-block;
    text-align: left;
}

#monthYearPicker {
  border: none; /* Remove border */
  padding: 5px; /* Add some padding */
  font-size: 26px; /* Set font size */
  outline: none; /* Remove outline on focus */
  width: 150px;
}

/* Public marketing pages (base_public.html) */
.public-narrow-text {
  max-width: 720px;
}

.public-social-links a {
  display: inline-block;
  padding: 0.5rem;
}

.public-hero-card .card-body {
  padding: 2rem;
}

@media (max-width: 991px) {
  .page-body-wrapper.pt-5 {
    padding-top: 4.5rem !important;
  }
}

/* ------------------------------------------------------------------ */
/* Apple-style public landing (star_theme palette, homepage only)       */
/* ------------------------------------------------------------------ */

.public-apple-body .main-panel {
  background: #fbfbfd;
}

.public-apple-body .content-wrapper {
  padding: 0;
  max-width: none;
}

.public-apple-body .footer {
  background: #f5f5f7;
  border-top: none;
  margin-top: 0;
}

.public-apple-body .footer .border-top {
  border-top: none !important;
}

.public-apple-body .footer .text-muted {
  color: #6e6e73 !important;
  font-size: 12px;
}

/* Frosted minimal nav */
.apple-nav {
  height: 48px;
  padding: 0;
  background: rgba(251, 251, 253, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 1030;
}

.apple-nav-inner {
  max-width: 1024px;
  margin: 0 auto;
  min-height: 48px;
  padding: 0 22px;
}

.apple-nav-brand img {
  height: 22px;
  width: auto;
}

.apple-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.apple-nav-links a {
  color: #1d1d1f;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-decoration: none;
  opacity: 0.88;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.apple-nav-links a:hover {
  opacity: 1;
  text-decoration: none;
  color: #1d1d1f;
}

.apple-nav-cta {
  color: var(--bs-primary, #0a5394) !important;
  font-weight: 500 !important;
}

.apple-nav-toggle {
  border: none;
  background: transparent;
  font-size: 22px;
  color: #1d1d1f;
  padding: 0;
}

@media (max-width: 991px) {
  .apple-nav {
    height: auto;
    min-height: 48px;
    background: #fbfbfd;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .apple-nav-inner {
    flex-wrap: wrap;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
  }

  .apple-nav .navbar-collapse {
    flex-basis: 100%;
    width: 100%;
    background: #ffffff;
    margin: 0 -16px;
    padding: 12px 16px 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  }

  .apple-nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    width: 100%;
  }

  .apple-nav-links a {
    display: block;
    width: 100%;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 400;
    opacity: 1;
    color: #1d1d1f;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .apple-nav-links a:last-child {
    border-bottom: none;
    padding-bottom: 4px;
  }

  .apple-nav-links a:hover,
  .apple-nav-links a:focus {
    color: var(--bs-primary, #0a5394);
    opacity: 1;
  }

  .apple-nav-cta {
    margin-top: 4px;
    font-weight: 600 !important;
  }

  .apple-nav-toggle {
    margin-left: auto;
  }
}

/* Standard public navbar (non-Apple pages) */
@media (max-width: 991px) {
  .public-apple-body .navbar.default-layout .navbar-collapse {
    background: #ffffff;
    margin-top: 8px;
    padding: 12px 16px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  }

  .public-apple-body .navbar.default-layout .navbar-nav .nav-link {
    color: #1d1d1f;
    font-size: 16px;
    padding: 10px 0;
  }
}

/* Page sections */
.public-apple {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Karla, Roboto, sans-serif;
  color: #1d1d1f;
  -webkit-font-smoothing: antialiased;
}

.apple-hero {
  text-align: center;
  padding: 72px 22px 40px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  scroll-margin-top: 56px;
}

/* Compact heroes keep the homepage top clearance; only bottom padding is reduced */
.apple-hero-compact {
  padding: 72px 22px 32px;
  scroll-margin-top: 56px;
}

.apple-showcase {
  padding: 72px 22px 80px;
}

.apple-showcase-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.apple-showcase-centered .apple-body {
  margin-left: auto;
  margin-right: auto;
}

.apple-bg-white {
  background: #ffffff;
}

.apple-bg-gray {
  background: #f5f5f7;
}

.apple-bg-dark {
  background: #1d1d1f;
}

.apple-eyebrow {
  font-size: 20px;
  line-height: 1.23536;
  font-weight: 600;
  letter-spacing: -0.022em;
  color: #6e6e73;
  margin-bottom: 8px;
}

.apple-eyebrow-light {
  color: #a1a1a6;
}

.apple-headline-xl {
  font-size: clamp(40px, 7vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: #1d1d1f;
}

.apple-headline-lg {
  font-size: clamp(32px, 5.5vw, 48px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  color: #1d1d1f;
}

.apple-headline-md {
  font-size: clamp(28px, 4vw, 32px);
  line-height: 1.1025;
  font-weight: 650;
  letter-spacing: -0.023em;
  margin: 0 0 22px;
}

.apple-headline-sm {
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.125;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.apple-subheadline {
  font-size: clamp(19px, 2.5vw, 24px);
  line-height: 1.33341;
  font-weight: 400;
  letter-spacing: 0.009em;
  color: #6e6e73;
  max-width: 640px;
  margin: 0 auto 28px;
}

.apple-inline-seal {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  margin: 0 0.12em 0 0.18em;
  vertical-align: -0.12em;
  object-fit: contain;
  border-radius: 50%;
}

.apple-body {
  font-size: 17px;
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.022em;
  color: #6e6e73;
  margin: 0 0 18px;
}

.apple-body-narrow {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.apple-text-light {
  color: #f5f5f7;
}

.apple-text-muted-light {
  color: #a1a1a6;
}

.apple-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 8px;
}

.apple-link {
  display: inline-block;
  font-size: 17px;
  line-height: 1.23536;
  font-weight: 400;
  letter-spacing: -0.022em;
  color: var(--bs-primary, #0a5394);
  text-decoration: none;
  margin-top: 12px;
  transition: opacity 0.2s ease;
}

.apple-link:hover {
  text-decoration: underline;
  color: var(--bs-primary, #0a5394);
  opacity: 0.85;
}

.apple-link span {
  font-size: 1.1em;
}

.apple-inline-link {
  color: var(--bs-primary, #0a5394);
  text-decoration: none;
}

.apple-inline-link:hover {
  text-decoration: underline;
}

.apple-media-frame {
  margin: 28px auto 32px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: #f5f5f7;
}

.apple-media-frame-wide {
  max-width: 100%;
}

.apple-media-frame-narrow {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.apple-btn {
  display: inline-block;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #ffffff;
  background: var(--bs-primary, #0a5394);
  border: none;
  border-radius: 980px;
  padding: 10px 20px;
  text-decoration: none;
  margin: 6px 8px 6px 0;
  transition: opacity 0.2s ease;
}

.apple-btn:hover {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.88;
}

.apple-btn-outline {
  color: var(--bs-primary, #0a5394);
  background: transparent;
  border: 1px solid var(--bs-primary, #0a5394);
}

.apple-btn-outline:hover {
  color: #ffffff;
  background: var(--bs-primary, #0a5394);
}

.apple-faq-controls {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.apple-faq-controls .form-check-label {
  font-size: 15px;
  color: #1d1d1f;
  cursor: pointer;
}

.apple-faq-item {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 15px;
  line-height: 1.4;
  color: #1d1d1f;
  background: #f5f5f7;
  border: none;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 8px;
  cursor: pointer;
  text-decoration: none;
}

.apple-faq-item:hover {
  background: #e8e8ed;
  color: #1d1d1f;
  text-decoration: none;
}

.apple-faq-item .mdi {
  margin-right: 6px;
  color: #6e6e73;
}

.apple-faq-answer {
  font-size: 15px;
  line-height: 1.47059;
  color: #6e6e73;
  padding: 4px 16px 16px;
}

.apple-faq-answer p {
  margin-bottom: 12px;
}

.apple-hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  max-width: 360px;
}

.apple-hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  line-height: 1.6;
  color: #1d1d1f;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.apple-hours-list li span {
  color: #6e6e73;
}

.apple-contact-qr {
  max-width: 220px;
  margin: 0 auto 24px;
  display: block;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.apple-contact-qr img {
  width: 100%;
  border-radius: 12px;
}

.apple-form-card {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 32px 36px 36px;
  text-align: left;
}

.apple-form-card h4,
.apple-form-card h6 {
  color: #1d1d1f;
}

.apple-form-card p,
.apple-form-card li {
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.47059;
}

.apple-form-card .auth-form-actions {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.apple-form-card .auth-form-actions .btn {
  display: block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  line-height: 1.5;
  text-align: center;
}

.rental-application-form-card {
  max-width: 960px;
}

.rental-application-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.rental-application-form-card .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rental-application-form-card .form-row .col {
  flex: 1 1 180px;
  min-width: 0;
}

.apple-pm-prose h5 {
  font-size: 19px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 28px 0 12px;
}

.apple-pm-prose ul {
  padding-left: 1.25rem;
  color: #6e6e73;
}

.apple-pm-prose ul li {
  margin-bottom: 12px;
}

.apple-pm-prose b,
.apple-pm-prose strong {
  color: #1d1d1f;
}

.apple-pet-photo {
  max-width: 240px;
  border-radius: 14px;
  margin: 16px auto;
  display: block;
}

.apple-showcase-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.apple-badge-row {
  margin-top: 28px;
}

.apple-eho-badge {
  max-width: 140px;
  height: auto;
  opacity: 0.9;
}

.apple-social-section {
  padding-bottom: 56px;
}

.apple-social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.apple-social-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apple-social-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.apple-social-chip img {
  height: 24px;
  width: auto;
  max-width: 28px;
}

/* Compact property listings grid */
.apple-listings {
  padding: 40px 22px 48px;
}

.apple-listings-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.apple-listings-header {
  text-align: center;
  margin-bottom: 24px;
}

.apple-listings-count {
  font-size: 14px;
  line-height: 1.4;
  color: #6e6e73;
  margin: 6px 0 0;
}

.apple-property-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.apple-property-card {
  border-radius: 14px;
  background: #f5f5f7;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apple-property-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.apple-property-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.apple-property-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.apple-property-card-media {
  aspect-ratio: 4 / 3;
  max-height: 120px;
  overflow: hidden;
  background: #e8e8ed;
}

.apple-property-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.apple-property-card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.apple-property-card-location {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #86868b;
  margin: 0 0 4px;
}

.apple-property-card-title {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1d1d1f;
  margin: 0 0 6px;
}

.apple-property-card-desc {
  font-size: 12px;
  line-height: 1.35;
  color: #6e6e73;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.apple-property-card-cta {
  font-size: 13px;
  color: var(--bs-primary, #0a5394);
  margin-top: auto;
}

/* Homepage map card */
.apple-property-map-card .apple-property-map-trigger {
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.apple-property-map-preview-wrap {
  position: relative;
  background: #e8e8ed;
}

.apple-property-map-preview {
  width: 100%;
  height: 100%;
  min-height: 120px;
  z-index: 1;
}

.apple-property-map-preview .leaflet-control-zoom {
  display: none;
}

.apple-property-map-preview .leaflet-control-attribution {
  font-size: 9px;
  line-height: 1.2;
  padding: 2px 4px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.apple-property-map-modal-dialog {
  max-width: 920px;
}

.apple-property-map-modal-body {
  padding: 0 1rem 1rem;
}

.apple-property-map-modal-map {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  background: #e8e8ed;
}

.apple-property-map-modal-note {
  font-size: 13px;
  color: #6e6e73;
  margin: 12px 0 0;
  text-align: center;
}

.apple-property-map-modal-content .modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.apple-property-map-modal-content .modal-title {
  font-size: 19px;
  font-weight: 600;
  color: #1d1d1f;
}

/* Rent apply — property picker cards */
.apple-apply-property-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 8px;
}

.apple-apply-property-card .apple-property-card-media {
  max-height: 180px;
}

.apple-apply-property-trigger {
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.apple-apply-property-card .apple-property-card-link,
.apple-apply-property-card .apple-apply-property-trigger {
  cursor: pointer;
}

.apple-apply-property-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.apple-listings-footer-note {
  text-align: center;
  font-size: 14px;
  color: #6e6e73;
  margin: 20px 0 0;
}

@media (max-width: 1068px) {
  .apple-property-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .apple-apply-property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 834px) {
  .apple-property-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .apple-listings {
    padding: 32px 16px 40px;
  }
}

@media (max-width: 480px) {
  .apple-property-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .apple-apply-property-grid {
    grid-template-columns: 1fr;
  }

  .apple-apply-property-card .apple-property-card-media {
    max-height: 200px;
  }

  .apple-property-map-modal-map {
    height: 300px;
  }

  .apple-property-card-media {
    max-height: 96px;
  }

  .apple-property-card-body {
    padding: 10px;
  }

  .apple-property-card-title {
    font-size: 13px;
  }

  .apple-property-card-desc {
    display: none;
  }
}

/* Public property detail page */
.apple-property-detail-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
}

.public-apple-body .page-body-wrapper.pt-0 {
  padding-top: 48px !important;
}

/* Match homepage clearance: fixed nav (48px) + hero top padding (72px) */
.public-apple-body .apple-hero,
.public-apple-body .apple-hero-compact {
  padding-top: 72px;
}

.apple-property-detail-cta {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.apple-property-detail-cta-top {
  padding-top: 24px;
  scroll-margin-top: 56px;
}

.apple-property-detail-cta .apple-property-detail-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.apple-property-detail-back {
  font-size: 14px;
  color: #6e6e73;
  text-decoration: none;
}

.apple-property-detail-back:hover {
  color: var(--bs-primary, #0a5394);
  text-decoration: none;
}

.apple-property-detail-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  font-size: 15px;
  color: #6e6e73;
  margin: 12px 0 0;
}

.apple-property-detail-meta span::before {
  content: "·";
  margin-right: 20px;
  color: #d2d2d7;
}

.apple-property-detail-meta span:first-child::before {
  content: none;
  margin: 0;
}

.apple-property-move-in {
  font-size: 17px;
  line-height: 1.4;
  color: var(--bs-primary, #0a5394);
  margin: 16px 0 0;
}

.apple-property-move-in-note {
  display: block;
  font-size: 13px;
  color: #6e6e73;
  margin-top: 4px;
}

.apple-property-gallery-header {
  text-align: center;
  margin-bottom: 24px;
}

.apple-property-gallery {
  padding: 40px 0 48px;
}

.apple-property-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.apple-property-map {
  padding: 40px 0 48px;
}

.apple-property-map-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #e8e8ed;
  height: 360px;
}

.apple-property-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.apple-property-map-link {
  text-align: center;
  margin: 16px 0 0;
}

.apple-property-gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #e8e8ed;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.apple-property-gallery-hero {
  grid-column: 1 / -1;
}

.apple-property-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}

.apple-property-gallery-hero img {
  max-height: 560px;
}

.apple-property-gallery-caption {
  font-size: 12px;
  color: #6e6e73;
  padding: 8px 12px 10px;
  margin: 0;
  background: #f5f5f7;
}

.apple-property-detail-description {
  text-align: left;
  max-width: 720px;
}

.apple-property-detail-body {
  text-align: left;
  color: #1d1d1f;
}

.apple-property-detail-body p:last-child {
  margin-bottom: 0;
}

.apple-property-detail-cta-bottom {
  padding: 48px 0 56px;
}

@media (max-width: 734px) {
  .apple-property-gallery-grid {
    grid-template-columns: 1fr;
  }

  .apple-property-map-frame {
    height: 280px;
  }

  .apple-property-gallery-item img {
    max-height: 280px;
  }

  .apple-property-detail-meta {
    flex-direction: column;
    gap: 4px;
  }

  .apple-property-detail-meta span::before {
    content: none;
    margin: 0;
  }

  .apple-hero,
  .apple-hero-compact {
    padding-top: 72px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .apple-hero {
    padding-bottom: 56px;
  }

  .apple-hero-compact {
    padding-bottom: 28px;
  }

  .apple-showcase {
    padding: 56px 20px 64px;
  }

  .apple-media-frame {
    border-radius: 12px;
  }
}

/* Property management page */
.apple-pm-prose {
  text-align: left;
  max-width: 720px;
}

.about-page-logo {
  display: block;
  width: 200px;
  height: auto;
  margin: 0 auto 24px;
}

.apple-pm-prose .apple-headline-sm {
  text-align: left;
}

.apple-pm-prose .apple-eyebrow {
  text-align: left;
}

.apple-pm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0 20px;
}

.apple-pm-card {
  background: #f5f5f7;
  border-radius: 14px;
  padding: 20px 22px;
}

.apple-pm-card h3 {
  font-size: 17px;
  line-height: 1.23536;
  font-weight: 600;
  letter-spacing: -0.022em;
  color: #1d1d1f;
  margin: 0 0 8px;
}

.apple-pm-card p {
  font-size: 15px;
  line-height: 1.47059;
  color: #6e6e73;
  margin: 0;
}

.apple-pm-list {
  margin: 0 0 18px;
  padding-left: 1.25rem;
  color: #6e6e73;
  font-size: 17px;
  line-height: 1.47059;
}

.apple-pm-list li {
  margin-bottom: 10px;
}

.apple-pm-list li:last-child {
  margin-bottom: 0;
}

.apple-pm-note {
  font-size: 15px;
  font-style: italic;
}

.apple-pm-table-wrap {
  margin: 24px 0 20px;
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.apple-pm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.4;
  background: #ffffff;
}

.apple-pm-table th,
.apple-pm-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.apple-pm-table th {
  font-weight: 600;
  color: #1d1d1f;
  background: #f5f5f7;
}

.apple-pm-table td {
  color: #6e6e73;
}

.apple-pm-table tbody tr:last-child td {
  border-bottom: none;
}

.apple-pm-guarantee {
  color: #1d1d1f;
}

@media (max-width: 734px) {
  .apple-pm-grid {
    grid-template-columns: 1fr;
  }

  .apple-media-frame-narrow {
    max-width: 72%;
  }

  .apple-form-card {
    padding: 24px 20px 28px;
  }
}

/* --------------------------------------------------------------------------
   Portal Apple shell (authenticated app — base_portal_apple.html)
   -------------------------------------------------------------------------- */

.portal-apple {
  background: #f5f5f7;
  min-height: 100vh;
}

.portal-apple-topbar {
  height: 72px;
  padding: 0 16px 0 8px;
  background: rgba(251, 251, 253, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 1030;
}

.portal-apple-topbar-brand {
  gap: 4px;
  min-width: 0;
}

.portal-apple-logo img {
  height: 56px;
  width: auto;
  display: block;
}

.portal-apple-menu-btn {
  border: none;
  background: transparent;
  color: #1d1d1f;
  font-size: 22px;
  line-height: 1;
  padding: 8px;
  border-radius: 8px;
}

.portal-apple-menu-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.portal-apple-topbar-welcome {
  padding-left: 12px;
  min-width: 0;
}

.portal-apple-topbar-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  line-height: 1.3;
}

.portal-apple-topbar-subtitle {
  margin: 0;
  font-size: 12px;
  color: #6e6e73;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 520px;
}

.portal-apple-topbar-subtitle a {
  color: #0066cc;
  text-decoration: none;
}

.portal-apple-topbar-subtitle a:hover {
  text-decoration: underline;
}

.portal-apple-topbar-actions {
  gap: 4px;
}

.portal-apple-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #1d1d1f !important;
  font-size: 20px;
}

.portal-apple-icon-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.portal-apple-badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: #ff3b30;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}

.portal-apple-user-btn {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px !important;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  color: #1d1d1f !important;
  font-size: 14px;
  font-weight: 500;
}

.portal-apple-user-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

.portal-apple-user-menu {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.portal-apple-notify-dropdown {
  position: relative;
}

.portal-apple-notify-menu {
  right: 0 !important;
  left: auto !important;
  transform: none !important;
  width: min(360px, calc(100vw - 24px));
  max-width: 360px;
  margin-top: 8px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.portal-apple .page-body-wrapper {
  padding-top: 72px;
  min-height: calc(100vh - 72px);
}

.portal-apple .sidebar {
  background: #fbfbfd;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.portal-apple .sidebar .nav-category {
  color: #86868b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.portal-apple .sidebar .nav-link {
  color: #1d1d1f;
  border-radius: 10px;
  margin: 2px 10px;
}

.portal-apple .sidebar .nav-link .menu-title {
  color: inherit;
}

.portal-apple .sidebar .nav-link .trust-ledgers-menu-arrow {
  margin-left: auto;
  font-size: 18px;
  line-height: 1;
  color: #86868b;
  transition: transform 0.2s ease-in;
}

.portal-apple .sidebar .nav-link[aria-expanded="true"] .trust-ledgers-menu-arrow {
  transform: rotate(90deg);
}

.portal-apple input[type="date"].portal-date-input,
.portal-apple .portal-date-input[type="date"] {
  height: 45px;
  width: 200px;
  max-width: 100%;
}

/* Match portal text/date control height (45px) and landlord file inputs (~43px). */
.portal-apple input[type="file"].portal-file-input,
.portal-apple .portal-file-input[type="file"] {
  height: 38px;
  max-width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  line-height: 1.25;
  box-sizing: border-box;
}

.portal-apple select.form-control {
  background-color: #ffffff;
  color: #1d1d1f;
}

.portal-apple select.form-control option {
  background-color: #ffffff;
  color: #1d1d1f;
}

.portal-apple select.form-control option:checked,
.portal-apple select.form-control option:hover,
.portal-apple select.form-control option:focus {
  background-color: #ffffff;
  color: #1d1d1f;
}

.portal-apple select.form-control.structure-org-managers-select {
  color: #1d1d1f;
  background-color: #ffffff;
}

.portal-apple select.form-control.structure-org-managers-select option {
  color: #1d1d1f;
  background-color: #ffffff;
}

.portal-apple select.form-control.structure-org-managers-select option:checked {
  background-color: #0071e3;
  color: #ffffff;
}

.structure-org-secret-field {
  position: relative;
  width: 100%;
}

.structure-org-secret-field .form-control {
  width: 100%;
  padding-right: 2.75rem;
}

.structure-org-secret-toggle {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #6e6e73;
  padding: 0.25rem;
  line-height: 1;
  cursor: pointer;
}

.structure-org-secret-toggle:hover,
.structure-org-secret-toggle:focus {
  color: #1d1d1f;
  outline: none;
}

.portal-apple .sidebar .nav-item.active > .nav-link,
.portal-apple .sidebar .nav-link:hover {
  background: rgba(0, 0, 0, 0.05);
}

.portal-apple .main-panel {
  background: transparent;
  width: 100%;
}

.portal-apple .content-wrapper {
  background: transparent;
  padding: 20px 24px 28px;
}

.apple-portal-page-header {
  margin-bottom: 20px;
}

.apple-portal-page-subtitle {
  margin-top: 8px;
  margin-bottom: 0;
}

.portal-apple .card-rounded,
.portal-apple .apple-portal-card {
  border: none;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.portal-apple .card-rounded .card-body,
.portal-apple .apple-portal-card .card-body {
  padding: 24px 28px;
}

.portal-apple .card-title-dash {
  font-size: 22px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 0;
}

.portal-apple .card .text-dark,
.portal-apple .card p,
.portal-apple .card li {
  color: #6e6e73;
}

.portal-apple .card h4.text-dark {
  color: #1d1d1f !important;
  font-weight: 600;
}

.portal-apple .badge-danger {
  background: #ff3b30;
  color: #ffffff !important;
  border: none;
  border-radius: 6px;
  font-weight: 600;
}

.portal-apple .footer {
  background: transparent;
  border-top: none;
  padding-top: 8px;
}

.portal-apple .footer .text-muted {
  color: #86868b !important;
  font-size: 12px;
}

.portal-apple .compressed_table {
  border-collapse: separate;
  border-spacing: 0;
}

.portal-apple .compressed_table th,
.portal-apple .compressed_table td {
  color: #1d1d1f;
  border-color: rgba(0, 0, 0, 0.08);
}

.portal-apple .dataTables_wrapper .dataTables_filter input,
.portal-apple .dataTables_wrapper .dataTables_length select {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.portal-apple a:not(.btn):not(.nav-link):not(.dropdown-item):not(.portal-apple-icon-btn):not(.portal-apple-user-btn) {
  color: #0066cc;
}

.portal-apple .card a:not(.btn)[style*="color: inherit"] {
  color: #0066cc !important;
}

/* Filled primary buttons: white label text site-wide */
.btn-primary:not(.btn-outline-primary),
a.btn-primary:not(.btn-outline-primary),
button.btn-primary:not(.btn-outline-primary),
input.btn-primary:not(.btn-outline-primary) {
  color: #ffffff !important;
}

.btn-primary:not(.btn-outline-primary):hover,
.btn-primary:not(.btn-outline-primary):focus,
.btn-primary:not(.btn-outline-primary):active,
a.btn-primary:not(.btn-outline-primary):hover,
a.btn-primary:not(.btn-outline-primary):focus,
a.btn-primary:not(.btn-outline-primary):active {
  color: #ffffff !important;
}

.portal-apple .modal-content {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.portal-apple .modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.portal-apple .modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.portal-apple .nav-tabs .nav-link.active {
  color: #1d1d1f;
  border-color: rgba(0, 0, 0, 0.08) rgba(0, 0, 0, 0.08) #ffffff;
  font-weight: 600;
}

.portal-apple .home-tab {
  margin-top: 4px;
}

.portal-apple .home-tab .border-bottom {
  border-color: rgba(0, 0, 0, 0.08) !important;
}

@media (max-width: 991px) {
  .portal-apple .content-wrapper {
    padding: 16px 14px 24px;
  }

  .portal-apple-topbar-subtitle {
    max-width: 220px;
  }

  .portal-apple .page-body-wrapper .sidebar.sidebar-offcanvas {
    display: block;
    position: fixed;
    top: 72px;
    bottom: 0;
    left: auto;
    right: -280px;
    width: min(280px, 85vw);
    max-height: none;
    z-index: 1040;
    transition: right 0.25s ease-out;
    box-shadow: none;
    pointer-events: none;
  }

  .portal-apple .page-body-wrapper .sidebar.sidebar-offcanvas.active {
    right: 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    pointer-events: auto;
  }

  .portal-apple .main-panel {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .portal-apple-notify-dropdown .portal-apple-notify-menu.show {
    position: fixed !important;
    top: 56px !important;
    right: 12px !important;
    left: 12px !important;
    width: auto !important;
    max-width: none;
    transform: none !important;
    margin-top: 0;
  }

  .portal-apple .user-dropdown .portal-apple-user-menu.show {
    position: fixed !important;
    top: 56px !important;
    right: 12px !important;
    left: auto !important;
    width: min(280px, calc(100vw - 24px)) !important;
    transform: none !important;
  }
}

#approveRentalAppModal #id_decision_notes,
#approveRentalAppModal textarea.rental-app-approval-notes,
#denyRentalAppModal #id_denial_reasons,
#denyRentalAppModal textarea.rental-app-denial-reasons {
  min-height: 400px !important;
  height: 400px !important;
  resize: vertical;
}