.landlord-auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px 16px;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.22), transparent 28%),
    linear-gradient(135deg, #0f172a, #1e40af);
}

.landlord-auth-card {
  width: min(100%, 520px);
  background: #ffffff;
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.landlord-auth-logo {
  width: 86px;
  display: block;
  margin-bottom: 20px;
}

.landlord-auth-card h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.05em;
}

.landlord-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.landlord-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 0 16px;
  font: inherit;
  font-weight: 700;
}

.landlord-form input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

@media (max-width: 600px) {
  .landlord-auth-card {
    padding: 26px;
    border-radius: 26px;
  }

  .landlord-auth-logo {
    width: 74px;
  }
}

.landlord-dashboard-page {
  min-height: 100vh;
  background: #f8fafc;
  padding: 32px 16px;
}

.landlord-dashboard-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.landlord-dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  margin-bottom: 24px;
}

.landlord-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.landlord-stat-card,
.landlord-panel,
.landlord-property-card,
.landlord-empty-box {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
}

.landlord-stat-card span {
  display: block;
  color: #64748b;
  font-weight: 900;
  margin-bottom: 8px;
}

.landlord-stat-card strong {
  color: #1e40af;
  font-size: 1.2rem;
}

.landlord-properties-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.landlord-property-card {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.landlord-status {
  display: inline-flex;
  margin-top: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-size: 12px;
  font-weight: 900;
  text-transform: capitalize;
}

.landlord-status.approved {
  background: #dcfce7;
  color: #166534;
}

.landlord-status.rejected {
  background: #fee2e2;
  color: #991b1b;
}

@media (max-width: 768px) {
  .landlord-dashboard-head,
  .landlord-property-card {
    flex-direction: column;
  }

  .landlord-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   LANDLORD DASHBOARD CARD POLISH
   Safe CSS only
===================================================== */

.landlord-property-card {
  display: grid;
  gap: 18px;
}

.landlord-property-main {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.landlord-property-main h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #0f172a;
}

.landlord-property-main p {
  margin: 0;
  color: #64748b;
  font-weight: 700;
}

.landlord-property-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.landlord-property-details div {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 14px;
}

.landlord-property-details span,
.landlord-admin-note span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.landlord-property-details strong {
  display: block;
  color: #1e40af;
  font-size: 1rem;
  font-weight: 900;
}

.landlord-admin-note {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 18px;
  padding: 14px;
}

.landlord-admin-note p {
  margin: 0;
  color: #7c2d12;
  font-weight: 700;
}

.landlord-status {
  white-space: nowrap;
}

.landlord-status.pending,
.landlord-status.pending_review {
  background: #fef3c7;
  color: #92400e;
}

.landlord-status.needs_more_info {
  background: #dbeafe;
  color: #1e40af;
}

.landlord-status.approved {
  background: #dcfce7;
  color: #166534;
}

.landlord-status.rejected {
  background: #fee2e2;
  color: #991b1b;
}

@media (max-width: 768px) {
  .landlord-property-main {
    flex-direction: column;
  }

  .landlord-property-details {
    grid-template-columns: 1fr;
  }
}
/* =====================================================
   LANDLORD PAYOUT WORDING POLISH
===================================================== */

.landlord-payout-info {
  margin: 22px 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.landlord-payout-info strong {
  display: block;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.landlord-payout-info p {
  margin: 0;
  color: #64748b;
  line-height: 1.65;
  font-size: 0.94rem;
}
