.my-property-shell {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #f8fafc;
  color: #0f172a;
  min-height: calc(100vh - 110px);
  padding: 36px 24px 60px;
  margin-top: 50px;
}

.page-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Page header ── */
.page-header {
  margin-bottom: 28px;
}

.page-label {
  margin: 0 0 8px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #475569;
}

.page-title {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 800;
}

.page-description {
  margin: 10px 0 0;
  max-width: 640px;
  color: #64748b;
  line-height: 1.75;
  font-size: 0.9rem;
}

/* ── Filter bar ── */
.mp-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.mp-filter-item {
  display: flex;
  flex-direction: column;
}

.mp-filter-item.grow {
  flex: 1;
  min-width: 180px;
}

.mp-filter-input,
.mp-filter-select {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  padding: 10px 14px;
  font: inherit;
  font-size: 0.85rem;
  color: #0f172a;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 150px;
}

.mp-filter-input:focus,
.mp-filter-select:focus {
  outline: none;
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.mp-filter-btn {
  padding: 10px 22px;
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 10px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-end;
}

.mp-filter-btn:hover {
  background: #2563eb;
}

/* ── Summary row ── */
.mp-summary-row {
  margin-bottom: 18px;
}

.mp-count {
  font-size: 0.85rem;
  color: #64748b;
}

.mp-count strong {
  color: #0f172a;
  font-weight: 700;
}

/* ── Cards list ── */
.mp-cards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Override property-listing.css to not animate; just show */
.mp-listing-card.glass-card {
  animation: none;
  opacity: 1;
  transform: none;
}

/* ── Status chip (on image) ── */
.mp-status-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  pointer-events: none;
}

.mp-status-chip.published {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
}

.mp-status-chip.draft {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
}

/* ── Management action bar ── */
.mp-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 14px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
}

.mp-action-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mp-listing-date {
  font-size: 0.75rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.mp-listing-date i {
  color: #cbd5e1;
  font-size: 0.7rem;
}

/* ── Action buttons ── */
.mp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  white-space: nowrap;
}

.mp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.mp-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.mp-btn-view {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}
.mp-btn-view:hover {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.mp-btn-edit {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}
.mp-btn-edit:hover {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
}

.mp-btn-publish {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #86efac;
}
.mp-btn-publish:hover {
  background: #15803d;
  color: #fff;
  border-color: #15803d;
}

.mp-btn-unpublish {
  background: #fefce8;
  color: #a16207;
  border: 1px solid #fde68a;
}
.mp-btn-unpublish:hover {
  background: #a16207;
  color: #fff;
  border-color: #a16207;
}

.mp-btn-delete {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.mp-btn-delete:hover {
  background: #dc2626;
  color: #fff;
  border-color: #dc2626;
}

/* ── Empty state ── */
.mp-empty-state {
  padding: 56px 32px;
  text-align: center;
  color: #64748b;
}

.mp-empty-state i {
  font-size: 3rem;
  color: #cbd5e1;
  display: block;
  margin-bottom: 16px;
}

.mp-empty-state h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: #334155;
}

.mp-empty-state p {
  margin: 0 0 24px;
  font-size: 0.9rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .mp-filter-bar {
    flex-direction: column;
  }

  .mp-filter-item,
  .mp-filter-item.grow {
    width: 100%;
  }

  .mp-filter-input,
  .mp-filter-select {
    width: 100%;
  }

  .mp-filter-btn {
    width: 100%;
    justify-content: center;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .mp-action-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .mp-action-btns {
    gap: 6px;
  }

  .mp-btn {
    padding: 6px 10px;
    font-size: 0.72rem;
  }
}
