.property-status-banner {
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.property-status-banner i {
  font-size: 1.2rem;
}
.status-banner-sold {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.status-banner-under_contract {
  background: #fef3c7;
  color: #d97706;
  border: 1px solid #fde68a;
}
.status-banner-off_market {
  background: #f3f4f6;
  color: #4b5563;
  border: 1px solid #e5e7eb;
}
.status-banner-expired {
  background: #f3f4f6;
  color: #6b7280;
  border: 1px solid #e5e7eb;
}
/* ── Share button ── */
.share-btn {
  position: absolute;
  top: 15px;
  right: 55px;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  z-index: 10;
  transition: background 0.2s;
}
.share-btn:hover {
  background: rgba(0, 79, 77, 0.85);
}

/* ── Share popup ── */
.share-popup {
  position: fixed;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  width: 220px;
  z-index: 9999;
  padding: 10px 0 6px;
  border: 1px solid #e5e7eb;
}
.share-popup-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 16px 8px;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 4px;
}
.share-option {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 9px 16px;
  font-size: 0.9rem;
  color: #2e2e2e;
  text-align: left;
  transition: background 0.12s;
}
.share-option:hover {
  background: #f3f4f6;
}
.share-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ── Share toast ── */
.share-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #004f4d;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.25s,
    transform 0.25s;
  pointer-events: none;
  max-width: 320px;
}
.share-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Listing attribution ── */
.listing-attribution {
  font-size: 0.85rem;
  color: #374151;
  text-align: center;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
}

body {
  padding-right: 370px !important;
}
.admin-review-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  height: 100vh;
  background: #fff;
  border-left: 3px solid #004f4d;
  overflow-y: auto;
  z-index: 99998;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.18);
  font-family: inherit;
}
.arp-header {
  background: #004f4d;
  color: #fff;
  padding: 1rem 1.25rem 0.85rem;
  position: sticky;
  top: 0;
  z-index: 2;
}
.arp-header h2 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 700;
}
.arp-header a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  text-decoration: none;
}
.arp-header a:hover {
  color: #fff;
  text-decoration: underline;
}
.arp-body {
  padding: 1.25rem;
}
.arp-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}
.arp-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.arp-section h3 {
  font-size: 0.78rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 0.85rem;
}
.arp-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  width: 100%;
  justify-content: center;
}
.arp-info-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
}
.arp-info-label {
  color: #6b7280;
}
.arp-info-value {
  color: #2e2e2e;
  font-weight: 600;
  text-align: right;
  max-width: 180px;
  word-break: break-word;
}
.arp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  margin-bottom: 0.6rem;
  text-decoration: none;
  text-align: center;
}
.arp-btn:last-child {
  margin-bottom: 0;
}
.arp-tier-select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1.5px solid #d1d5db;
  border-radius: 7px;
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  background: #fff;
}
#arp-reject-form {
  display: none;
  margin-top: 0.75rem;
}
#arp-reject-form textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1.5px solid #d1d5db;
  border-radius: 7px;
  font-size: 0.85rem;
  resize: vertical;
  min-height: 80px;
  margin-bottom: 0.5rem;
  box-sizing: border-box;
}
@media (max-width: 1100px) {
  body {
    padding-right: 0 !important;
  }
  .admin-review-panel {
    width: 100%;
    height: auto;
    position: relative;
    box-shadow: none;
    border-left: none;
    border-top: 3px solid #004f4d;
  }
}
