/* =====================================================
   Property Photos
   ===================================================== */
* {
  box-sizing: border-box;
}

.photo-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

/* Photo card layout */
.photo-card {
  border: 1px solid #838486;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.photo-card:hover {
  border-color: #cbd5e1;
}
.photo-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Image wrapper */
.photo-image-wrap {
  width: 100%;
  height: 200px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
  cursor: zoom-in;
}

.photo-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.photo-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 12px;
}
@media (max-width: 640px) {
  .photo-upload-btn {
    width: 100%;
    justify-content: center;
  }
}
/* Primary badge */
.photo-badge.primary {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #16a34a;
  color: #fff;
  font-size: 0.7rem;
  padding: 4px 6px;
  border-radius: 4px;
}
/* Actions row */
.photo-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-top: 1px solid #e5e7eb;
  gap: 8px;
  font-size: 0.85rem;
  flex-wrap: nowrap;
}
.photo-order,
.photo-actions {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
/* Order arrows */
.photo-order button {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.photo-order button:hover {
  background: #e5e7eb;
}
.photo-order button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.photo-caption input {
  width: 100%;
}
.photo-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.photo-controls .btn-link {
  font-size: 0.8rem;
}

.btn-link.danger {
  color: #dc2626;
}
/* Primary state */
.photo-meta .primary-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #22c55e;
}
.btn-secondary input:disabled + span {
  opacity: 0.6;
  pointer-events: none;
}
.photo-card.is-primary {
  outline: 2px solid #2c7be5;
}

.photo-actions button {
  margin-right: 0.25rem;
}
.set-primary {
  color: #2563eb;
  font-weight: 500;
}
.photo-empty {
  padding: 1rem;
  color: #666;
  text-align: center;
}
.photo-danger .delete-photo {
  background: none;
  border: none;
  color: #dc2626;
  font-size: 0.8rem;
  cursor: pointer;
}
.photo-caption {
  margin-top: 0.5rem;
  padding: 6px 10px;
  border-top: 1px solid #f1f5f9;
}
.landlord-property-edit .btn-primary {
  background: #1f3d2a; /* slightly darker than your current green */
  color: #ffffff;
  border: 1px solid #1f3d2a;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.landlord-property-edit .btn-primary:hover {
  background: #162d1f;
  border-color: #162d1f;
}

.landlord-property-edit .btn-primary:active {
  background: #0f1f15;
}
.landlord-property-edit .btn-primary {
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.landlord-property-edit .btn-primary:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
/* Fix full-width "bar button" issue */
.landlord-property-edit .edit-section form button.btn-primary {
  width: auto;
  min-width: 180px;
  display: inline-block;
  margin-top: 8px;
}
@media (max-width: 640px) {
  .landlord-property-edit .edit-section form button.btn-primary {
    width: 100%;
  }
}
/* Optional: center it slightly for balance */
.landlord-property-edit .edit-section form {
  align-items: start;
}
/* =====================================================
   Landlord Dashboard – Property list
   ===================================================== */
.landlord-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}
.dashboard-listings {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 12px;
}
@media (max-width: 640px) {
  .landlord-dashboard #content {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.dashboard-header {
  display: flex;
  align-items: center;
  gap: 1rem;

  max-width: 720px;
  margin-bottom: 1.25rem;

  justify-content: flex-start; /* key change */
}

@media (max-width: 640px) {
  .dashboard-header {
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
/* =========================================
   Property Row – Clean Layout
========================================= */

.property-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #e5e7eb;
  width: 100%;
  max-width: 100%;
}

/* Thumbnail */
.property-thumb {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 6px;
  background-color: #f3f4f6;
  flex-shrink: 0;
}

/* Main text */
.property-main {
  flex: 1 1 auto;
  min-width: 0; /* critical for Safari */
}

.property-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.property-meta {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: #555;
}

/* Actions */

.property-edit-link {
  font-size: 0.9rem;
  text-decoration: underline;
}

/* Mobile wrap (Option B) */
@media (max-width: 640px) {
  .property-row {
    flex-direction: column;
    gap: 12px;
  }

  .property-thumb {
    width: 100%;
    height: auto;
    max-height: 220px;
  }

  .property-actions {
    width: 100%;
  }
  .property-actions a.btn-secondary {
    width: auto;
    padding: 0;
    border: none;
    background: none;
    text-decoration: underline;
  }
  .property-actions a,
  .property-actions .btn-secondary,
  .property-actions button {
    width: 100%;
  }
}
.property-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.property-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.property-actions .btn-secondary {
  white-space: nowrap;
}
/* =====================================================
   Landlord – Global helpers
   ===================================================== */
.btn-sm {
  padding: 6px 10px;
  font-size: 0.85rem;
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
/* =====================================================
   Toggles & activation feedback
   ===================================================== */
.toggle-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 0.85rem;
}

.toggle-switch input {
  display: none;
}

.toggle-slider {
  width: 36px;
  height: 20px;
  background-color: #d1d5db;
  border-radius: 999px;
  position: relative;
  transition: background-color 0.2s ease;
}

.toggle-slider::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: #22c55e;
}

.toggle-switch input:checked + .toggle-slider::after {
  transform: translateX(16px);
}
.activation-errors {
  margin-top: 8px;
  padding: 8px 12px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 6px;
  font-size: 0.85rem;
}

.activation-errors ul {
  margin: 0;
  padding-left: 18px;
}

.activation-errors li {
  color: #9a3412;
}
.price-input {
  max-width: 200px;
}
.property-row-errors {
  padding: 0 0 12px 88px; /* aligns under text, not thumbnail */
}

@media (max-width: 640px) {
  .property-row-errors {
    padding-left: 0;
  }
}
.publish-banner {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* Listing is live */
.publish-banner.publish-live {
  background: #ecfdf5;
  border: 1px solid #86efac;
  color: #065f46;
}

/* Listing is hidden but ready */
.publish-banner.publish-hidden {
  background: #eff6ff;
  border: 1px solid #93c5fd;
  color: #1e3a8a;
}

/* Listing not ready */
.publish-banner.not-ready {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
}

.publish-checklist {
  margin-bottom: 24px;
  padding-left: 16px;
  font-size: 0.9rem;
}

.publish-checklist ul {
  margin: 8px 0 0;
  padding-left: 18px;
}
.listing-status-pill {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  vertical-align: middle;
}

/* visible listing */
.pill-live {
  background: #dcfce7;
  color: #166534;
}

/* hidden listing */
.pill-hidden {
  background: #dbeafe;
  color: #1e40af;
}
/* =====================================================
   Landlord Property Edit Page
   ===================================================== */
.landlord-property-edit #content {
  padding: 0 16px 24px;
}
.landlord-property-edit label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 4px;
}

.landlord-property-edit input,
.landlord-property-edit select,
.landlord-property-edit textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 1rem;
  border: 1px solid;
  border-color: #1f3d2a;
  border-radius: 6px;
  background: #fff;
}
.input-title {
  font-size: 1.1rem;
  font-weight: 600;
}
.landlord-property-edit select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #555 50%),
    linear-gradient(135deg, #555 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 4px),
    calc(100% - 15px) calc(50% - 4px);
  background-size: 5px 5px;
  background-repeat: no-repeat;
}
.landlord-property-edit input:focus,
.landlord-property-edit select:focus,
.landlord-property-edit textarea:focus {
  outline: none;
  border-color: #1f3d2a;
  box-shadow: 0 0 0 1px rgba(47, 89, 62, 0.3);
}
.landlord-property-edit textarea {
  min-height: 120px;
  resize: vertical;
}
.landlord-property-edit .hint {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 6px;
}

/* =========================================
   Amenities - Always Visible Grid
========================================= */

.amenities .amenity-group {
  margin-bottom: 2rem;
}
.amenity-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.amenity-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.6rem 1.5rem;
}
.amenity-group {
  margin-bottom: 20px; /* space between categories */
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.amenity-group summary {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  cursor: pointer;
}
.amenity-group[open] summary {
  margin-bottom: 10px;
}
/* Individual amenity rows */
.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
.amenity-item input {
  transform: scale(1.1);
}
/* Checkbox alignment */
.amenity-item input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.option-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .option-buttons {
    justify-content: flex-start;
  }

  .option-buttons button {
    flex: 0 0 auto; /* ❗ stops stretching */
    min-width: 64px; /* consistent size */
    padding: 10px 0;
  }
}
.option-buttons button {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  min-width: 60px;
}
.option-buttons button[data-value="0"] {
  min-width: 90px; /* Studio only */
}
.option-buttons button.active {
  background: #2f593e;
  color: #fff;
  border-color: #2f593e;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.sub-section-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.option-group {
  margin-bottom: 14px;
}
.save-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #065f46; /* dark green */
  color: #ecfdf5;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 9999;
}

.save-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.photo-status {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}
.section-saved {
  font-size: 0.85rem;
  color: #2f8f2f;
  margin-left: 8px;
  font-weight: 500;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.section-saved.hidden {
  display: none;
}
.section-saved.fade-out {
  opacity: 0;
}
.section-unsaved {
  font-size: 0.85rem;
  color: #b77a00;
  margin-left: 8px;
  font-weight: 500;
}

.section-unsaved.hidden {
  display: none;
}
#publish-status {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  padding-top: 8px;
}
.video-preview {
  margin-top: 12px;
}

.video-preview img {
  width: 100%;
  max-width: 320px;
  border-radius: 8px;
  border: 1px solid #ddd;
}
.video-preview {
  margin-top: 12px;
  max-width: 500px;
}

.video-preview iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}
.hint.strong {
  font-weight: 500;
}

.hint.subtle {
  font-size: 13px;
  opacity: 0.85;
}
.hidden {
  display: none;
}
.btn-dashboard {
  display: inline-block;
  margin: 12px 0;
  padding: 10px 14px;
  background: #2f593e;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.btn-dashboard:hover {
  background: #244732;
}
@media (max-width: 640px) {
  .btn-dashboard {
    display: block;
    width: 100%;
    text-align: center;
  }
}
/* ----------------------------------------
   Progress Bar
---------------------------------------- */
#save-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #2c7be5;
  z-index: 9999;
  transition: width 0.25s ease;
}

#save-progress-bar.active {
  width: 80%;
}

#save-progress-bar.complete {
  width: 100%;
  transition: width 0.2s ease;
}

#save-progress-bar.hidden {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.progress-meta {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
}
.progress-meta strong {
  color: #166534;
}
/* ----------------------------------------
   AI Prompt Modal (Minimal v1)
---------------------------------------- */

.modal.hidden {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.modal-content {
  position: relative;
  max-width: 720px;
  margin: 6vh auto;
  background: #fff;
  border-radius: 6px;
  padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

#ai-prompt-text {
  width: 100%;
  box-sizing: border-box;
  margin: 0.75rem 0 1rem;
  padding: 0.75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
  resize: vertical;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ----------------------------------------
   Availablity Blocking
---------------------------------------- */
.form-error {
  background: #fff4f4;
  border-left: 4px solid #d33;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  color: #900;
  font-size: 0.95rem;
}
/* Availability modal sizing */
#availability-modal .modal-content {
  font-size: 1rem; /* base text */
  max-width: 520px;
}
#availability-modal form label {
  display: block;
  margin-bottom: 0.75rem;
}
#availability-modal label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151;
}
#availability-modal input[type="text"] {
  height: 44px;
}
#availability-modal input[type="date"],
#availability-modal input[type="text"] {
  font-size: 1rem;
  padding: 10px 12px;
  border: 1px solid #647186;
  border-radius: 6px;
  background: #fff;
}
#availability-modal input[type="date"] {
  height: 44px; /* makes it feel intentional */
  line-height: 1.2;
  max-width: 240px;
}
#availability-modal .form-error {
  margin-bottom: 0.75rem;
  color: #b42318;
  background: #fdecea;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
}
#availability-modal .modal-actions {
  margin-top: 1.25rem;
  gap: 0.75rem;
}

#availability-modal .modal-actions .btn-primary {
  padding: 10px 16px;
  font-size: 0.95rem;
}
#availability-modal .modal-actions {
  justify-content: flex-end;
  margin-top: 1rem;
}
.edit-indicator {
  margin: 0.25rem 0 0.75rem;
  font-size: 0.85rem;
  color: #b45309; /* warm amber */
}
.edit-indicator.hidden {
  display: none;
}

/* ----------------------------------------
   Availability Page (v1 polish)
---------------------------------------- */

.landlord-property-availability .property-context {
  margin: 0 0 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
}

.landlord-property-availability .property-name {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
}

.landlord-property-availability .property-location {
  margin: 0 0 0.5rem;
  color: rgba(0, 0, 0, 0.7);
}

.landlord-property-availability .property-status {
  margin: 0;
  font-size: 0.95rem;
}

/* Make the add button feel like an action bar */
.landlord-property-availability .edit-section:has(#add-block-btn) {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.landlord-property-availability .edit-section {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  background: #fff;
}
@media (max-width: 680px) {
  .landlord-property-availability .edit-section {
    padding: 0.75rem;
  }
}
/* ----------------------------------------
   Availability table
---------------------------------------- */

.availability-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.availability-table thead th {
  text-align: left;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.75);
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.availability-table tbody td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: top;
}

.availability-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.02);
}

.availability-table td:last-child {
  white-space: nowrap;
}

.availability-table .btn-link {
  padding: 0;
  font-size: 0.85rem;
  margin-right: 0.75rem;
}

.availability-table .btn-link:last-child {
  margin-right: 0;
}
.availability-table .btn-link.danger {
  margin-left: 0.5rem;
}
/* Mobile table: stack rows for readability */
@media (max-width: 680px) {
  .availability-table,
  .availability-table thead,
  .availability-table tbody,
  .availability-table th,
  .availability-table td,
  .availability-table tr {
    display: block;
  }

  .availability-table thead {
    display: none;
  }

  .availability-table tbody tr + tr {
    margin-top: 0.5rem;
  }

  /* allow rounded corners to actually show */
  .availability-table {
    border-collapse: separate;
    border-spacing: 0 0.5rem;
  }
  .availability-table tbody td {
    border: none;
    padding: 0.75rem 0;
  }
  /* slightly stronger separation on hover */
  .availability-table tbody tr:hover {
    border-left-color: #2f593e; /* your green */
    background: rgba(47, 89, 62, 0.04);
  }

  /* actions feel grouped with row */
  .availability-table td:last-child {
    text-align: right;
  }
  .availability-table tbody td:nth-child(1)::before {
    content: "Start: ";
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
  }

  .availability-table tbody td:nth-child(2)::before {
    content: "End: ";
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
  }

  .availability-table tbody td:nth-child(3)::before {
    content: "Notes: ";
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
  }

  .availability-table tbody td:nth-child(4) {
    padding-top: 0.5rem;
  }
}

/* ----------------------------------------
   Modal small extras (reuse your existing modal CSS)
---------------------------------------- */

/* disable page scroll behind modal */
body.modal-open {
  overflow: hidden;
}

/* make availability modal form labels breathe a bit */
#availability-modal .modal-body label {
  display: block;
  margin: 0.75rem 0;
}
#availability-modal .modal-body {
  padding-top: 0.5rem;
}
#availability-modal .modal-body input[type="date"],
#availability-modal .modal-body input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  margin-top: 0.35rem;
}
.landlord-property-availability .availability-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
/* subtle edit indicator */
#availability-modal .edit-indicator {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.65);
}

#availability-modal .edit-indicator.hidden {
  display: none;
}
/* ----------------------------------------
   Availability page – outer spacing
---------------------------------------- */
.landlord-property-availability .availability-list h2 {
  margin-bottom: 0.25rem;
}

.landlord-property-availability .availability-list .hint {
  margin-bottom: 0.75rem;
}
.landlord-property-availability #content {
  padding: 0 16px 24px;
}

@media (min-width: 768px) {
  .landlord-property-availability #content {
    padding: 0 24px 32px;
  }
}

@media (max-width: 680px) {
  .availability-table tbody tr {
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 0.75rem;
    margin: 0.75rem 0;
    background: #fff;
  }
}
@media (max-width: 680px) {
  .landlord-property-availability .availability-list {
    padding-left: 4px;
    padding-right: 4px;
  }
}
input.is-locked {
  background: #f9fafb;
  color: #6b7280;
  cursor: not-allowed;
}
.badge {
  display: inline-block;
  padding: 2px 8px;
  margin-right: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  vertical-align: middle;
}

.badge-tenant {
  background: #e0f2fe;
  color: #0369a1;
}

.badge-maintenance {
  background: #fff7ed;
  color: #9a3412;
}
/* ----------------------------------------
   Availability Archive
---------------------------------------- */

.availability-archive details {
  margin-top: 1rem;
}

.availability-archive summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 0.75rem;
}

.availability-archive .hint-inline {
  font-weight: normal;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
  margin-left: 0.5rem;
}

.availability-table.archived {
  opacity: 0.85;
}

.availability-table.archived tbody tr:hover {
  background: transparent;
}
/* ----------------------------------------
   Availability Archive
---------------------------------------- */

.photo-caption-input {
  width: 100%;
  font-size: 0.9rem;
}
/* ----------------------------------------
   house rules
---------------------------------------- */
.rule-item input.saving {
  opacity: 0.6;
}

.rule-item input.saved {
  outline: 2px solid #4caf50;
  transition: outline 0.3s ease;
}
/* ----------------------------------------
   inquiry card
---------------------------------------- */
.inquiry-card {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1rem;
  background: #fff;
}

.inquiry-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.inquiry-meta {
  font-size: 0.9rem;
  color: #555;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.inquiry-message {
  background: #f7f7f7;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 0.95rem;
}

.status {
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  text-transform: capitalize;
  @extend .badge; /* conceptual, not literal */
}

.status-verified {
  background: #e6f4ea;
  color: #1e7e34;
}
.status-pending_verification {
  background: #fff3cd;
  color: #856404;
}
.status-expired {
  background: #f8d7da;
  color: #721c24;
}
.dashboard-empty {
  color: #666;
  max-width: 520px;
  line-height: 1.5;
}
/* ----------------------------------------
   landlord nav
---------------------------------------- */
/* Desktop */
.landlord-nav {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}

/* Links */
.landlord-nav a {
  display: block;
  width: 100%;
  padding: 12px 16px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
}

/* Active */
.landlord-nav a.active {
  color: #0066cc;
  border-bottom: 2px solid #0066cc;
}

/* Mobile dropdown */
@media (max-width: 768px) {
  .landlord-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #e5e7eb;
  }

  .landlord-nav.open {
    display: flex;
  }
}
.live-subtext {
  margin-top: 6px;
  font-size: 13px;
  color: #64748b;
}
.dropdown-menu {
  width: 220px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.dropdown-menu a {
  padding: 12px 16px;
  display: block;
}
.flash-message.success {
  background: #e7f7ed;
  border: 1px solid #b5e2c3;
  color: #1d5e32;
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 15px;
}
/* Inbox toggle */
.inbox-toggle {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.inbox-toggle a {
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  color: #444;
  font-weight: 500;
}
/* ----------------------------------------
   Inbox content divider
---------------------------------------- */
.landlord-dashboard .inbox-subnav {
  position: relative;
}

.landlord-dashboard .inbox-subnav::after {
  content: "";
  display: block;
  height: 1px;
  background: #e5e7eb;
  margin-top: 0.75rem;
}
.inbox-row:first-of-type {
  margin-top: 0.5rem;
}
/* ----------------------------------------
   Inbox Row Hierarchy Refinement
---------------------------------------- */

.inbox-row strong {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
}

.inbox-row .renter-name,
.inbox-row a > br + * {
  font-size: 0.85rem;
  color: #555;
}

.inbox-date {
  font-size: 0.8rem;
  color: #888;
}
/* ----------------------------------------
   Inbox Subnav (clean tab style)
---------------------------------------- */

.inbox-subnav {
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
  max-width: 720px;
}

.inbox-subnav a {
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 0.5rem;
  color: #555;
  border-bottom: 2px solid transparent;
}

.inbox-subnav a.active {
  color: #2c6bed;
  border-bottom-color: #2c6bed;
}

/* ----------------------------------------
   Inbox container width control
---------------------------------------- */
.landlord-dashboard .inbox-container {
  max-width: 720px;
  margin: 0 auto;
}
/* Inbox rows */
.inbox-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 0;
  border-bottom: 1px solid #e6e6e6;
}
.next-steps-box {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  padding: 12px;
  border-radius: 8px;
  margin: 12px 0;
}
.inbox-row a {
  flex: 1;
  text-decoration: none;
  font-size: 0.85rem;
  color: #555;
  display: block;
  padding: 12px;
}
.inbox-row a {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inbox-row strong {
  display: block;
  font-size: 0.95rem;
}
.inbox-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.inbox-arrow {
  color: #999;
  font-size: 1.1rem;
}
.inbox-row .renter-name {
  font-size: 0.85rem;
  color: #555;
}
.inbox-row.is-new strong {
  font-weight: 700;
}

.inbox-row .badge {
  margin-left: 0.5rem;
  padding: 2px 6px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 4px;
  background: #2c6bed;
  color: #fff;
}

/* Contact detail */
.contact-card {
  background: #fff;
  padding: 1.25rem;
  border-radius: 8px;
  max-width: 700px;
}
/* ----------------------------------------
   Contacted Status Refinement
---------------------------------------- */

.contact-status {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.contact-status.contacted {
  color: #166534; /* deep green */
}

.contact-status.contacted::before {
  content: "";
}
.contact-card.is-contacted {
  border-left: 4px solid #16a34a;
}
/* ----------------------------------------
   Inbox View – New State
---------------------------------------- */

.view-status {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.new-status {
  display: inline-block;
  padding: 4px 8px;
  background: #e0edff;
  color: #1d4ed8;
  border-radius: 4px;
}

.contact-card.is-new {
  border-left: 4px solid #2c6bed;
}
/* ----------------------------------------
   Onboarding 
---------------------------------------- */
.landlord-onboarding {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.onboarding-welcome h1 {
  margin-bottom: 15px;
}

.onboarding-welcome p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.onboarding-steps {
  margin-top: 40px;
}

.onboarding-steps .step {
  margin-bottom: 30px;
}

.onboarding-positioning {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 0.95rem;
  color: #555;
}
.landlord-pricing {
  background: #f8f9fa;
  padding: 30px 15px;
}

.landlord-pricing h2 {
  margin-bottom: 20px;
}

.landlord-pricing .pricing-note {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #555;
}
.pricing-cta {
  margin-top: 25px;
  padding: 30px 15px;
}
.landlord-fit {
  background: #f8f9fa;
  padding: 30px 15px;
}

.landlord-key-benefits {
  padding: 30px 15px;
}

.landlord-how-preview {
  background: #f8f9fa;
  padding: 30px 15px;
}
/* ----------------------------------------
   Inbox View – Archived State
---------------------------------------- */

.archived-status {
  display: inline-block;
  padding: 4px 8px;
  background: #f3f4f6;
  color: #555;
  border-radius: 4px;
}

.contact-card.is-archived {
  opacity: 0.9;
  border-left: 4px solid #d1d5db;
}
/* ----------------------------------------
   Inbox View Hierarchy Refinement
---------------------------------------- */

.inbox-view-container h1 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 1rem;
}
.contact-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.contact-header strong {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
}
.contact-body hr {
  margin: 1.25rem 0;
  border: none;
  border-top: 1px solid #e5e7eb;
}
.contact-body strong {
  font-weight: 600;
  color: #333;
}
.contact-actions {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.back-link {
  margin-top: 1rem;
}
.contact-body p {
  margin: 0.4rem 0;
  font-size: 0.9rem;
}
.inquiry-message,
.contact-body p:last-child {
  font-size: 0.95rem;
  line-height: 1.6;
  background: #f9fafb;
  padding: 0.9rem 1rem;
  border-radius: 6px;
}
.contact-actions {
  margin-top: 1.5rem;
}

.back-link {
  margin-top: 0.75rem;
}

.muted {
  color: #777;
}
/* ----------------------------------------
   Landlord Home Page – Desktop containment
---------------------------------------- */
.landlord-home-page .container {
  max-width: 920px;
}
/* ----------------------------------------
   Landlord How It Works – Desktop containment
---------------------------------------- */
.landlord-how-it-works-page .container {
  max-width: 920px;
}
/* ----------------------------------------
   Landlord Dashboard – layout containment
---------------------------------------- */
.landlord-dashboard #content {
  max-width: 960px;
  margin: 0 auto;
}
/* ----------------------------------------
   Landlord dashboard nav containment
---------------------------------------- */
.landlord-dashboard .landlord-nav {
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  padding-left: 16px;
  padding-right: 16px;
}
@media (max-width: 640px) {
  .landlord-dashboard .landlord-nav {
    padding-left: 12px;
    padding-right: 12px;
  }
}
/* ----------------------------------------
   Landlord Dashboard – shared content containment
---------------------------------------- */
.landlord-dashboard #content {
  max-width: 1200px;
  margin: 0 auto;
}
.edit-section {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .edit-section {
    padding: 1rem;
  }
}
.edit-section h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.edit-section form {
  display: grid;
  grid-template-columns: 1fr; /* mobile first */
  gap: 12px;
}
.edit-section label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
}

.edit-section input,
.edit-section select,
.edit-section textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.7rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.95rem;
}

.edit-section textarea {
  max-width: 100%;
}
@media (min-width: 768px) {
  .edit-section form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }

  .edit-section form > p,
  .edit-section form > button {
    grid-column: span 2;
  }
}
@media (min-width: 768px) {
  .description-section form {
    display: block;
  }

  .description-section textarea,
  .description-section p,
  .description-section button {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .edit-section form > button.btn-primary {
    /* keep spanning both columns */
    grid-column: span 2;

    /* fix the "full-width bar" problem */
    width: auto;
    min-width: 180px;

    /* position inside the 2-column space */
    justify-self: center; /* ← change to start or end if you prefer */
  }
}
.edit-section form > button.btn-primary {
  padding: 10px 20px;
}
.publish-banner {
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}
/* =========================================
   Full-width Description Textarea
========================================= */
.description-section textarea {
  width: 100%;
  max-width: 100%;
  min-height: 240px;
  line-height: 1.6;
}
.publish-banner.ready {
  background: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
}

.landlord-nav a {
  margin-right: 0;
}
/* =========================================
   Landlord Property Edit Layout
========================================= */

.landlord-property-edit #content {
  max-width: 960px;
  margin: 2.5rem auto 4rem auto;
  padding: 0 1.25rem;
}
.landlord-dashboard .inbox-toggle,
.landlord-dashboard .inbox-row,
.landlord-dashboard .dashboard-empty {
  padding-left: 16px;
  padding-right: 16px;
}
@media (max-width: 640px) {
  .landlord-dashboard .inbox-toggle,
  .landlord-dashboard .inbox-row,
  .landlord-dashboard .dashboard-empty {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.landlord-dashboard .inbox-toggle {
  max-width: 720px;
  margin-bottom: 1.25rem;
}
.inbox-view-container {
  max-width: 720px;
}
.landlord-home-page section {
  margin-bottom: 0;
}
.landlord-how-it-works-page section {
  margin-bottom: 0;
}
/* ----------------------------------------
   Dashboard header button sizing
---------------------------------------- */
.dashboard-header .btn-primary {
  width: auto;
  flex: none;
  white-space: nowrap;
}
.btn-primary {
  width: auto;
  display: inline-block;
  padding: 10px 16px;
}
@media (max-width: 640px) {
  .btn-primary {
    width: 100%;
    text-align: center;
  }
}
.badge-muted {
  background: #e5e7eb;
  color: #374151;
  font-size: 0.75rem;
}
.inbox-row.contacted {
  opacity: 0.75;
}
.dashboard-banner {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}

.banner-verified {
  background: #e6f7ec;
  color: #1f7a3f;
}

.banner-pending {
  background: #fff7e6;
  color: #a15c00;
}
/* ------------------------------
   Landlord Nav Badge
-------------------------------- */

.nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 18px;
  height: 18px;
  padding: 0 6px;

  font-size: 11px;
  font-weight: 600;

  border-radius: 999px;

  background-color: #d93025; /* subtle red */
  color: #fff;

  line-height: 1;
}

/* Optional: subtle pulse for unread state */
.has-unread {
  font-weight: 600;
}
.price-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.price-wrapper .currency {
  position: absolute;
  left: 12px;
  color: #666;
  font-weight: 500;
  pointer-events: none;
}

.price-wrapper input {
  width: 100%;
  padding-left: 26px; /* space for $ */
}
/* Remove number input arrows */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
}

/* ---------------------------------- */
/* Sleeping Setup – compact row UX */
/* ---------------------------------- */

.sleeping-section .bedroom-block {
  background: #fafafa;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 14px;
}

.sleeping-section .bed-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

/* Make each row feel like a mini control bar */
.sleeping-section .bed-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
}

/* Dropdown */
.sleeping-section .bed-row select {
  flex: 1;
  min-width: 160px;
}

/* Quantity group */
.sleeping-section .bed-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  background: #fafafa;
}

.sleeping-section .bed-qty input {
  width: 46px;
  text-align: center;
  font-weight: 600;
  padding: 6px 6px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background: #fff;
}

.sleeping-section .bed-qty button {
  width: 32px;
  height: 32px;
  border: 1px solid #d6d6d6;
  background: #fff;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1;
  padding: 0;
}

.sleeping-section .bed-qty button:hover {
  background: #f2f2f2;
}

/* Remove button becomes lighter (even if it's still a text link) */
.sleeping-section .remove-bed-row {
  margin-left: auto;
  font-size: 13px;
  opacity: 0.9;
}

.sleeping-section .remove-bed-row:hover {
  opacity: 1;
  text-decoration: underline;
}
.sleeping-section form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sleeping-actions {
  grid-column: 1 / -1;
}
.sleeping-section h2 {
  margin-bottom: 0.75rem;
}

.sleeping-section .hint {
  margin-top: 0.5rem;
}

.bedroom-block {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 14px;
  background: #fafafa;
}

.bedroom-block h3 {
  margin: 0 0 14px 0;
  font-size: 16px;
}

.bed-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.bed-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bed-row select {
  min-width: 150px;
  flex: 1;
}

.bed-row input[type="number"] {
  width: 60px;
  text-align: center;
}
.bed-row::before {
  content: "×";
  font-weight: 600;
  margin-left: 4px;
  margin-right: -4px;
}
.bed-row .remove-bed-row {
  white-space: nowrap;
  font-size: 13px;
}

.add-bed-row {
  margin-top: 6px;
}

.sleeping-actions {
  margin-top: 12px;
}
.sleeping-section form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sleeping-section .sleeping-actions {
  grid-column: 1 / -1;
}
.sleeping-section .icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}
.sleeping-section .bed-row::before {
  content: none !important;
}
.sleeping-section .icon-btn:hover {
  background: #f6f6f6;
}
.sleeping-section .icon-btn.remove-bed-row {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #f1b5b5;
  background: #fff5f5;
  color: #c62828;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  padding: 0;
}

.sleeping-section .icon-btn.remove-bed-row:hover {
  background: #ffe6e6;
  border-color: #e57373;
}
/* Mobile fix */
.sleeping-section .bedroom-block {
  padding: 12px;
}

.sleeping-actions {
  margin-top: 12px;
}
@media (max-width: 700px) {
  .sleeping-section form {
    grid-template-columns: 1fr;
  }

  /* Row stacks cleanly on mobile */
  .sleeping-section .bed-row {
    flex-direction: column;
    align-items: stretch;
  }

  .sleeping-section .remove-bed-row {
    margin-left: 0;
    text-align: left;
  }
}
.bed-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bed-qty input {
  width: 50px;
  text-align: center;
  font-weight: 500;
}

/* quantity buttons */

.bed-qty button {
  width: 32px;
  height: 32px;
  border: 1px solid #cfd6dc;
  background: #f8f9fa;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1;
  padding: 0;
}

.bed-qty button:hover {
  background: #eef1f3;
}
@media (max-width: 640px) {
  .bed-row {
    flex-direction: column;
    align-items: stretch;
  }

  .bed-row input[type="number"] {
    width: 100%;
  }
}
.bed-row .remove-bed-row {
  opacity: 0.85;
}

.bed-row .remove-bed-row:hover {
  opacity: 1;
}
@keyframes fadeInRow {
  from {
    opacity: 0;
    transform: translateY(-3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pricing-highlight {
  font-weight: 600;
  margin-top: 10px;
}

.pricing-subtle {
  font-size: 0.95rem;
  color: #666;
  margin-top: 8px;
}
.landlord-early {
  margin: 20px 0;
}

.early-highlight {
  font-weight: 600;
}

.early-subtle {
  font-size: 0.95rem;
  color: #666;
}

.steps-subtle {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #666;
}
.onboarding-highlight {
  margin-top: 10px;
  font-weight: 500;
}

.onboarding-subtle {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #666;
}
.property-progress {
  margin-top: 6px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 6px;
}

.progress-fill {
  height: 100%;
  background: #2f593e; /* your theme green */
  border-radius: 999px;
  transition: width 0.25s ease;
}

.progress-text {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}
.listing-progress {
  margin: 12px 0 18px;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f8fafc;
}

.progress-subtext {
  margin: 6px 0 10px;
  font-size: 14px;
  color: #64748b;
}
.property-missing {
  margin-top: 6px;
  padding-left: 16px;
  font-size: 12px;
  color: #a94442;
}
.section-error {
  border: 1px solid #f5c2c7;
  background: #fff5f5;
}

.section-error h2 {
  color: #b02a37;
}
.next-step-banner {
  margin-top: 10px;
  padding: 10px 14px;
  background: #fff8e1;
  border: 1px solid #f0c36d;
  border-radius: 6px;
  font-size: 14px;
}

.next-step-banner strong {
  color: #8a5a00;
}
.next-step {
  margin: 10px 0 14px;
  padding: 10px 14px;
  background: #fef9c3;
  border: 1px solid #fde68a;
  border-radius: 8px;
  font-size: 14px;
}
.listing-checklist {
  margin-top: 14px;
  padding-left: 4px;
}

.listing-checklist h3 {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.listing-checklist ul {
  margin: 6px 0 0;
  padding-left: 18px;
}
.listing-complete li.complete {
  color: #166534;
  font-weight: 500;
}
listing-complete-summary .next-step strong {
  color: #854d0e;
}
.publish-recommended {
  margin-top: 12px;
  padding: 10px;
  background: #f8fafc;
  border-left: 3px solid #94a3b8;
  font-size: 0.95rem;
}
.section-highlight {
  outline: 2px solid #2563eb;
  background: #eff6ff;
  transition: all 0.3s ease;
}
#description label {
  display: block;
  width: 100%;
}

#description textarea {
  width: 100%;
  max-width: 100%;
}
.edit-section label {
  display: block;
  width: 100%;
}

.edit-section textarea,
.edit-section input[type="text"],
.edit-section input[type="number"],
.edit-section select {
  width: 100%;
  max-width: 100%;
}
#description form,
#photo-section form {
  display: block;
}
