
/* Theme-aware palette (defaults). JS will try to infer the site's primary color
   and set these CSS variables so the plugin matches the site's look. */
:root{
  --ctsm-accent:#111;
  --ctsm-accent-contrast:#fff;
  --ctsm-accent-soft:rgba(17,17,17,.08);
  --ctsm-border:#e5e7eb;
  --ctsm-card:#fff;
  --ctsm-muted:#666;
}

.ctsm-pay{max-width:520px;padding:16px;border:1px solid var(--ctsm-border);border-radius:12px;background:var(--ctsm-card)}
.ctsm-card{padding:12px;border:1px dashed #ccc;border-radius:10px;margin:12px 0;min-height:44px}
.ctsm-pay button{padding:10px 14px;border-radius:10px;border:1px solid var(--ctsm-accent);background:var(--ctsm-accent);color:var(--ctsm-accent-contrast);cursor:pointer}
.ctsm-pay button[disabled]{opacity:.6;cursor:not-allowed}
.ctsm-status{margin-top:10px}
.ctsm-muted{color:var(--ctsm-muted);font-size:13px}


/* v0.3.0 basic UI */
.ctsm-card{border:1px solid #ddd;padding:16px;border-radius:10px;max-width:520px}
.ctsm-row{display:flex;gap:12px;margin:10px 0;flex-wrap:wrap}
.ctsm-row label{flex:1;min-width:180px}
.ctsm-btn{padding:10px 14px;border:0;border-radius:8px;cursor:pointer}
.ctsm-msg{white-space:pre-line}
.ctsm-availability{font-size:14px;line-height:1.4;margin-top:8px}
.ctsm-badge{display:inline-block;padding:2px 8px;border-radius:999px;border:1px solid #ddd;margin:2px 4px 2px 0}



/* Airbnb-like calendar */
.ctsm-calendar-wrap{margin-top:10px}
.ctsm-cal-header{display:flex;align-items:center;justify-content:space-between;gap:12px;margin:10px 0}
.ctsm-cal-title{font-weight:600;text-transform:capitalize;flex:1;text-align:center}
.ctsm-cal-msg{font-size:13px;line-height:1.3;color:#555;margin:6px 0 10px;min-height:18px}

.ctsm-cal-nav{
  border:1px solid var(--ctsm-border);
  background:var(--ctsm-card);
  border-radius:10px;
  padding:6px 10px;
  cursor:pointer;
  /* Some themes override button text colors making arrows invisible */
  color:#111 !important;
  -webkit-text-fill-color:#111 !important;
  opacity:1 !important;
  font-weight:700;
  font-size:18px;
  line-height:1;
  min-width:38px;
  min-height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 1px 2px rgba(0,0,0,.06);
}
.ctsm-cal-nav:hover{background:var(--ctsm-accent-soft)}
.ctsm-cal-nav:focus{outline:2px solid rgba(0,0,0,.15);outline-offset:2px}
.ctsm-calendar-wrap{margin-top:10px;width:100%}
.ctsm-cal-months{display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:12px;width:100%}
@media (max-width: 720px){
  .ctsm-cal-months{grid-template-columns:1fr}
}
.ctsm-cal-month{border:1px solid #eee;border-radius:14px;padding:10px}
.ctsm-cal-month-title{font-weight:600;margin-bottom:8px;text-transform:capitalize}
.ctsm-cal-dow{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;font-size:12px;color:#666;margin-bottom:6px}
.ctsm-cal-days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px}
.ctsm-cal-day{
  /* Give every day a visible outline so "available" days are distinguishable */
  border:1px solid var(--ctsm-border);
  background:#fff;
  border-radius:10px;
  min-height:34px;
  cursor:pointer;
  /* Ensure day numbers are always visible and centered, regardless of theme button styles */
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2px;
  font-size:13px;
  line-height:1;
  color:#111;
  padding:0;
}

.ctsm-cal-daynum{font-size:13px;line-height:1}
.ctsm-cal-price{font-size:10px;line-height:1;opacity:.85;}

/* Fixed tip bar shown on touch interactions */
.ctsm-cal-tipbar{min-height:22px;margin:8px 0 10px;padding:8px 10px;border:1px solid rgba(0,0,0,.06);border-radius:12px;background:#fff;font-size:13px;display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.ctsm-cal-tipbar:empty{display:none}
.ctsm-cal-tipbar__date{font-weight:600}
.ctsm-cal-tipbar__state.is-available{color:#166534}
.ctsm-cal-tipbar__state.is-blocked{color:#7f1d1d}
.ctsm-cal-tipbar__price{margin-left:auto;opacity:.9}
.ctsm-cal-day:hover{border-color:#ddd}
.ctsm-cal-day.is-empty{background:transparent;color:transparent;border-color:transparent;cursor:default}
.ctsm-cal-day.is-past{background:#f9fafb;color:#9ca3af;opacity:1;cursor:not-allowed}
/* Available days: clear green (user preferred stronger green/red contrast) */
.ctsm-cal-day:not(.is-empty):not(.is-past):not(.is-blocked):not(.is-reserved):not(.is-manual-blocked):not(.is-booking){
  border-color:#22c55e;
  background:#ecfdf5;
}
/* Guest-facing blocked days: high-contrast + pattern so it is obvious */
.ctsm-cal-day.is-blocked{
  opacity:1;
  cursor:not-allowed;
  color:#7f1d1d;
  border-color:#ef4444;
  background:repeating-linear-gradient(
    45deg,
    #fee2e2,
    #fee2e2 6px,
    #fff 6px,
    #fff 12px
  );
  text-decoration:none;
}
.ctsm-cal-day.is-inrange{background:var(--ctsm-accent-soft);border-color:rgba(0,0,0,.06)}
.ctsm-cal-day.is-hoverrange{background:#e5e7eb;border-color:rgba(0,0,0,.08)}
.ctsm-cal-day.is-start,.ctsm-cal-day.is-end{background:var(--ctsm-accent);color:var(--ctsm-accent-contrast);border-color:var(--ctsm-accent)}

/* Fallback calendar (clean template) uses .ctsm-cal-cell with is-free/is-blocked */
.ctsm-cal-cell{
  border:1px solid var(--ctsm-border);
  background:#fff;
  border-radius:10px;
  min-height:34px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  line-height:1;
  color:#111;
  padding:0;
}
.ctsm-cal-cell.is-empty{background:transparent;color:transparent;border-color:transparent;cursor:default}
.ctsm-cal-cell.is-free{border-color:#22c55e;background:#ecfdf5}
.ctsm-cal-cell.is-blocked{
  opacity:1;
  cursor:not-allowed;
  color:#7f1d1d;
  border-color:#ef4444;
  background:repeating-linear-gradient(45deg,#fee2e2,#fee2e2 6px,#fff 6px,#fff 12px);
}

/* Selected/range highlight for fallback calendar */
.ctsm-cal-cell.is-selected,.ctsm-cal-cell.ctsm-cal-range{background:#111;color:#fff;border-color:#111}

.ctsm-cal-legend{display:flex;gap:14px;flex-wrap:wrap;align-items:center;margin:8px 0 6px}
.ctsm-cal-legend__item{display:inline-flex;align-items:center;gap:6px;font-size:12px;color:#555}
.ctsm-cal-legend__dot{width:10px;height:10px;border-radius:3px;display:inline-block;border:1px solid #ddd;background:#fff}
.ctsm-cal-legend__dot.is-available{background:#22c55e;border-color:#22c55e}
.ctsm-cal-legend__dot.is-blocked{background:#ef4444;border-color:#ef4444}
.ctsm-cal-legend__dot.is-selected{background:#111;border-color:#111}
.ctsm-cal-legend__dot.is-past{background:#cbd5e1;border-color:#cbd5e1}

/* Host calendar booking visualization */
.ctsm-cal-day.is-booking{position:relative}
.ctsm-cal-day.booking-paid_confirmed{background:#ecfdf5;border-color:#10b981}
.ctsm-cal-day.booking-approved_waiting_payment{background:#eff6ff;border-color:#3b82f6}
.ctsm-cal-day.booking-pending_host{background:#fff7ed;border-color:#fb923c}
.ctsm-cal-day.booking-cancelled{background:#f3f4f6;border-color:#9ca3af;text-decoration:line-through}
.ctsm-cal-day.is-manual-blocked{background:#fafafa;border-color:#9ca3af;text-decoration:line-through}
.ctsm-host-rangebar{display:flex;gap:12px;align-items:center;justify-content:space-between;margin-top:12px;flex-wrap:wrap}
.ctsm-range{display:flex;align-items:center;justify-content:space-between;background:#fafafa;border:1px solid #eee;border-radius:12px;padding:10px}
.ctsm-range-label{font-weight:600}
.ctsm-range-value{color:#333}

/* Host dashboard */
.ctsm-table-wrap{overflow:auto}
.ctsm-table{width:100%;border-collapse:collapse}
.ctsm-table th,.ctsm-table td{border-bottom:1px solid #eee;padding:10px;text-align:left;font-size:14px;vertical-align:top}
.ctsm-highlight{outline:2px solid #111827;outline-offset:-2px;background:#fafafa}
.ctsm-actions{display:flex;gap:8px;flex-wrap:wrap}
.ctsm-btn{padding:10px 14px;border-radius:10px;border:1px solid var(--ctsm-accent);background:var(--ctsm-accent);color:var(--ctsm-accent-contrast);cursor:pointer}
.ctsm-btn-sm{padding:7px 10px;border-radius:10px;font-size:13px}
.ctsm-btn-outline{background:#fff;color:var(--ctsm-accent);border-color:var(--ctsm-accent)}
.ctsm-btn-danger{background:#b91c1c;border-color:#b91c1c}
.ctsm-host-msg{margin:10px 0;min-height:20px}

/* Host: horizontal checklist */
.ctsm-checklist{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
.ctsm-checkitem{display:inline-flex;align-items:center;gap:8px;padding:7px 10px;border-radius:999px;border:1px solid var(--ctsm-border);background:#fff;font-size:13px;line-height:1}
.ctsm-checkicon{width:18px;height:18px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;font-size:12px;line-height:1;font-weight:800;background:#e5e7eb;color:#374151}
.ctsm-checkitem.is-done{background:var(--ctsm-accent-soft);border-color:rgba(0,0,0,.06)}
.ctsm-checkitem.is-done .ctsm-checkicon{background:var(--ctsm-accent);color:var(--ctsm-accent-contrast)}
.ctsm-badge{display:inline-block;padding:3px 8px;border-radius:999px;background:#f3f4f6;font-size:12px}
.ctsm-status-paid_confirmed{background:#dcfce7}
.ctsm-status-pending_host{background:#fef9c3}
.ctsm-status-approved_waiting_payment{background:#e0f2fe}
.ctsm-status-rejected_by_host{background:#fee2e2}
.ctsm-status-cancelled_by_host{background:#fee2e2}

.ctsm-error{padding:10px;border:1px solid #cc0000;margin:10px 0;}
.ctsm-success{padding:10px;border:1px solid #008000;margin:10px 0;}

/* Reviews */
.ctsm-stars{display:inline-flex;gap:2px;vertical-align:middle}
.ctsm-star{font-size:16px;line-height:1}
.ctsm-star-empty{opacity:.35}
.ctsm-review-summary{display:flex;align-items:center;gap:10px;margin:0 0 10px}
.ctsm-review{padding:10px;border:1px solid #e9e9e9;border-radius:10px;margin:10px 0}

/* Host Panel (frontend) — dashboard layout on desktop */
.ctsm-host-panel-page #ctsm-host-panel-root{padding:32px 24px;}
.ctsm-host-panel-page .ctsm-panel{max-width:1200px;width:100%;margin:0 auto;}
/* Remove the legacy fixed max-width so cards can use the full panel width */
.ctsm-host-panel-page .ctsm-card{max-width:none;}
/* Better spacing for rows/labels on wide screens */
@media (min-width: 980px){
  .ctsm-host-panel-page .ctsm-row label{min-width:220px;}
}
.ctsm-review-head{display:flex;align-items:center;gap:10px;margin-bottom:6px;flex-wrap:wrap}
.ctsm-review-title{font-weight:600;margin-bottom:6px}
.ctsm-review-body p{margin:0}


/* Host dashboard tabs + filters */
.ctsm-tabs{display:flex;flex-wrap:wrap;gap:8px;margin:10px 0 14px}
.ctsm-tab{display:flex;align-items:center;gap:8px;padding:8px 10px;border:1px solid var(--ctsm-border);border-radius:10px;text-decoration:none}
.ctsm-tab.is-active{border-color:var(--ctsm-accent);box-shadow:0 0 0 1px var(--ctsm-accent) inset}
.ctsm-tab-count{display:inline-flex;align-items:center;justify-content:center;min-width:28px;padding:2px 8px;border-radius:999px;border:1px solid #e5e7eb;font-size:12px}
.ctsm-filters{margin:8px 0 14px;padding:10px;border:1px solid #e5e7eb;border-radius:12px}
.ctsm-filter-row{display:flex;flex-wrap:wrap;gap:10px;align-items:flex-end}
.ctsm-filter-row label{display:flex;flex-direction:column;gap:4px}
.ctsm-filter-row input{min-width:160px}
.ctsm-filter-actions{display:flex;gap:8px}


/* Host calendar blocking */
.ctsm-host-calendar-wrap{max-width:100%;width:100%}

/* Host panel calendar: use more screen on desktop */
@media(min-width:1100px){
  /* We render 2 meses a la vez en el panel; 3 columnas dejaban un hueco vacío */
  body.ctsm-host-panel-page .ctsm-cal-months{grid-template-columns:repeat(2, minmax(0, 1fr));}
  body.ctsm-host-panel-page .ctsm-cal-month{padding:14px;}
}

body.ctsm-host-panel-page .ctsm-cal-header{position:sticky;top:0;z-index:5;background:rgba(255,255,255,.92);backdrop-filter:saturate(180%) blur(8px);padding:10px 0;border-bottom:1px solid #eee;}
body.ctsm-host-panel-page .ctsm-cal-nav{border-radius:12px;padding:8px 12px;}
body.ctsm-host-panel-page .ctsm-cal-title{font-size:16px;}
body.ctsm-host-panel-page .ctsm-host-rangebar{background:#fff;border:1px solid #eee;border-radius:14px;padding:10px 12px;box-shadow:0 10px 30px rgba(0,0,0,.04);}
.ctsm-calendar-controls{display:flex;gap:12px;flex-wrap:wrap;align-items:flex-end;margin:10px 0}
.ctsm-calendar-controls label{display:flex;flex-direction:column;font-size:13px;gap:6px}
.ctsm-host-listing-select{min-width:260px;padding:8px;border:1px solid #ddd;border-radius:10px}
.ctsm-host-month{padding:8px;border:1px solid #ddd;border-radius:10px}
.ctsm-legend{display:flex;gap:14px;flex-wrap:wrap;margin-top:10px;font-size:13px}
.ctsm-legend-item{display:flex;align-items:center;gap:6px}
.ctsm-legend-box{display:inline-block;width:12px;height:12px;border-radius:4px;border:1px solid #ddd}
.ctsm-legend-box.is-manual{background:repeating-linear-gradient(45deg,#f5b041,#f5b041 6px,#fce7c5 6px,#fce7c5 12px);border-color:#f59e0b}
.ctsm-legend-box.is-reserved{background:#444;border-color:#444}
.ctsm-legend-box.is-available{background:#fff}

.ctsm-cal-day.is-reserved{background:#444;color:#fff;border-color:#444}
.ctsm-cal-day.is-manual-blocked{
  background:repeating-linear-gradient(45deg,#f5b041,#f5b041 6px,#fce7c5 6px,#fce7c5 12px);
  color:#111;
  border:2px solid #f59e0b;
  font-weight:700;
  position:relative;
}
.ctsm-cal-day.is-manual-blocked::after{
  content:"🔒";
  position:absolute;
  top:4px;
  right:6px;
  font-size:12px;
  line-height:1;
}
.ctsm-cal-day.is-manual-blocked:hover{filter:brightness(.98)}

/* Airbnb-like booking bars overlay */
.ctsm-cal-month{position:relative}
.ctsm-cal-bars{
  position:absolute;
  left:0;
  right:0;
  /* align with day grid (skip the 7 dow header cells) */
  top: calc(28px + 6px);
  padding:0;
  display:grid;
  grid-template-columns:repeat(7,1fr);
  grid-template-rows:repeat(var(--ctsm-weeks, 6), 34px);
  pointer-events:none;
}
.ctsm-booking-bar{
  align-self:center;
  justify-self:stretch;
  margin:0 2px;
  padding:4px 6px;
  border-radius:999px;
  font-size:12px;
  line-height:1;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  text-decoration:none;
  pointer-events:auto;
  border:1px solid rgba(0,0,0,.08);
}
.ctsm-booking-bar.booking-paid_confirmed{background:#dcfce7}
.ctsm-booking-bar.booking-approved_waiting_payment{background:#e0f2fe}
.ctsm-booking-bar.booking-pending_host{background:#fef9c3}
.ctsm-booking-bar.booking-cancelled{background:#e5e7eb;text-decoration:line-through}

/* Tooltip card */
.ctsm-tooltip-card{
  position:fixed;
  z-index:99999;
  width:260px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  box-shadow:0 12px 32px rgba(0,0,0,.12);
  padding:12px;
}
.ctsm-tooltip-top{display:flex;flex-direction:column;gap:2px;margin-bottom:8px}
.ctsm-tooltip-title{font-weight:700}
.ctsm-tooltip-sub{font-size:13px;color:#555}
.ctsm-tooltip-meta{font-size:12px;color:#444;line-height:1.35}
.ctsm-tooltip-actions{margin-top:10px;display:flex;justify-content:flex-end}
.ctsm-tooltip-link{font-weight:600;text-decoration:none}


/* Stats UI */
.ctsm-kpi-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:12px;margin:12px 0}
.ctsm-kpi{border:1px solid #e5e5e5;border-radius:14px;padding:12px;background:#fff}
.ctsm-kpi-label{font-size:12px;color:#666;margin-bottom:6px}
.ctsm-kpi-value{font-size:22px;font-weight:700}
.ctsm-kpi-sub{font-size:12px;color:#777;margin-top:4px}
.ctsm-two-col{display:grid;grid-template-columns:1fr;gap:14px}
@media(min-width:900px){.ctsm-two-col{grid-template-columns:1fr 1fr}}


/* ===== Host Stats ===== */
.ctsm-card{border:1px solid #e5e5e5;border-radius:12px;padding:12px;background:#fff}
.ctsm-chart{width:100%;display:block}
.ctsm-heatmap{padding:8px}
.ctsm-heatmap-header{display:grid;grid-template-columns:repeat(7,1fr);gap:6px;margin-bottom:8px}
.ctsm-heatmap-daylabel{text-align:center;font-size:12px;color:#666}
.ctsm-heatmap-grid{display:flex;flex-direction:column;gap:6px}
.ctsm-heatmap-week{display:grid;grid-template-columns:repeat(7,1fr);gap:6px}
.ctsm-heatmap-cell{height:22px;border:1px solid #e5e5e5;border-radius:6px;background:#f7f7f7;padding:0;cursor:pointer}
.ctsm-heatmap-cell.is-outside{opacity:.35;cursor:default}
.ctsm-heatmap-cell.intensity-0{background:#f7f7f7}
.ctsm-heatmap-cell.intensity-1{background:rgba(43,124,255,.15)}
.ctsm-heatmap-cell.intensity-2{background:rgba(43,124,255,.30)}
.ctsm-heatmap-cell.intensity-3{background:rgba(43,124,255,.50)}
.ctsm-heatmap-cell.intensity-4{background:rgba(43,124,255,.70)}
.ctsm-heatmap-legend{display:flex;justify-content:space-between;font-size:12px;color:#666;margin-top:6px}

/* Stats insights */
.ctsm-stats-insights{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin:14px 0 16px}
.ctsm-insight-card{border:1px solid #e5e7eb;border-radius:12px;padding:12px;background:#fff}
.ctsm-insight-wide{grid-column:1/-1}
.ctsm-insight-title{font-weight:700;margin-bottom:6px}
.ctsm-insight-body{font-size:13px;color:#333;line-height:1.35}
.ctsm-alert-list{margin:0;padding-left:18px}
.ctsm-alert{margin:6px 0}
.ctsm-alert-warn{color:#7a4b00}
.ctsm-alert-info{color:#0b4b7a}
.ctsm-ok{color:#166534;font-weight:600}
@media (max-width:720px){.ctsm-stats-insights{grid-template-columns:1fr}}


/* ===== ChetumalStay Listing Presentation (v0.6.1) ===== */

.ctsm-container{max-width:1100px;margin:0 auto;padding:24px 16px;}
.ctsm-hero{padding:8px 0 18px;}
.ctsm-h1{font-size:28px;line-height:1.15;margin:0 0 6px;}
.ctsm-h2{font-size:20px;margin:0 0 10px;}
.ctsm-sub{margin:0;color:#555;}
.ctsm-breadcrumbs{font-size:14px;color:#666;margin:6px 0 14px;display:flex;gap:8px;align-items:center;flex-wrap:wrap;}
.ctsm-breadcrumbs a{color:inherit;text-decoration:none;}
.ctsm-filters{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;align-items:end;background:#fff;border:1px solid #eee;border-radius:14px;padding:12px;margin:12px 0 18px;box-shadow:0 6px 20px rgba(0,0,0,.04);}
.ctsm-field label{display:block;font-size:12px;color:#666;margin:0 0 6px;}
.ctsm-field input{width:100%;padding:10px 12px;border:1px solid #ddd;border-radius:10px;}
.ctsm-actions{display:flex;gap:10px;justify-content:flex-end;}
.ctsm-btn{appearance:none;border:0;border-radius:12px;padding:10px 14px;background:var(--ctsm-accent);color:var(--ctsm-accent-contrast);cursor:pointer;font-weight:600;text-decoration:none;display:inline-flex;align-items:center;justify-content:center;}
.ctsm-btn.ghost{background:#fff;color:var(--ctsm-accent);border:1px solid var(--ctsm-border);}
.ctsm-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;}
@media(max-width:980px){.ctsm-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.ctsm-filters{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:640px){.ctsm-grid{grid-template-columns:1fr;}.ctsm-filters{grid-template-columns:1fr;}.ctsm-actions{justify-content:stretch;}}
.ctsm-card{background:#fff;border:1px solid #eee;border-radius:18px;overflow:hidden;box-shadow:0 10px 30px rgba(0,0,0,.05);transition:transform .15s ease, box-shadow .15s ease;}
.ctsm-card:hover{transform:translateY(-2px);box-shadow:0 16px 40px rgba(0,0,0,.08);}
.ctsm-card__img{display:block;position:relative;aspect-ratio:4/3;background:#f4f4f4;}
.ctsm-card__img img{width:100%;height:100%;object-fit:cover;display:block;}
.ctsm-card__img--placeholder{display:flex;align-items:center;justify-content:center;height:100%;color:#777;}
.ctsm-badges{position:absolute;left:10px;top:10px;display:flex;gap:8px;flex-wrap:wrap;}
.ctsm-badges.inline{position:static;}
.ctsm-badge{font-size:12px;font-weight:700;padding:6px 10px;border-radius:999px;background:color-mix(in srgb, var(--ctsm-accent) 85%, transparent);color:var(--ctsm-accent-contrast);backdrop-filter:blur(6px);}
.ctsm-badge.top{background:rgba(16,122,78,.92);}
.ctsm-badge.hot{background:rgba(167,59,5,.92);}
.ctsm-badge.new{background:rgba(12,74,110,.92);}
.ctsm-card__body{padding:12px 14px 14px;}
.ctsm-card__top{display:flex;gap:10px;justify-content:space-between;align-items:flex-start;}
.ctsm-card__title{margin:0;font-size:16px;line-height:1.2;flex:1;}
.ctsm-card__title a{text-decoration:none;color:#111;}
.ctsm-card__rating{display:flex;gap:6px;align-items:center;white-space:nowrap;font-size:13px;color:#333;}
.ctsm-rating-count{color:#777;}
.ctsm-pill{display:inline-flex;gap:6px;align-items:center;background:#f7f7f7;border:1px solid #eee;border-radius:999px;padding:6px 10px;font-size:12px;color:#333;}
.ctsm-card__meta{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0 12px;}
.ctsm-card__price{display:flex;gap:8px;align-items:baseline;}
.ctsm-card__price strong{font-size:18px;}
.ctsm-stars{display:inline-flex;gap:2px;line-height:1;}
.ctsm-star{font-size:14px;}
.ctsm-star.full{color:#111;}
.ctsm-star.half{color:#111;opacity:.55;}
.ctsm-star.empty{color:#bbb;}
.ctsm-empty{background:#fff;border:1px dashed #ddd;border-radius:16px;padding:22px;text-align:center;}
.ctsm-pagination{margin:18px 0;display:flex;justify-content:center;}
.ctsm-pagination .page-numbers{padding:8px 12px;border:1px solid #eee;border-radius:10px;margin:0 4px;text-decoration:none;color:#111;}
.ctsm-pagination .current{background:#111;color:#fff;border-color:#111;}
/* Detail layout */
.ctsm-detail{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:20px;align-items:start;}
@media(max-width:980px){.ctsm-detail{grid-template-columns:1fr;}}
.ctsm-detail__header{margin:8px 0 10px;}
.ctsm-detail__sub{display:flex;gap:12px;align-items:center;flex-wrap:wrap;color:#333;}
.ctsm-gallery{margin:10px 0 14px;}
.ctsm-lightbox{display:block;position:relative;border-radius:18px;overflow:hidden;box-shadow:0 10px 30px rgba(0,0,0,.08);}
.ctsm-lightbox img{width:100%;height:auto;display:block;}
.ctsm-gallery__hint{position:absolute;right:10px;bottom:10px;background:rgba(17,17,17,.8);color:#fff;border-radius:999px;padding:8px 10px;font-size:12px;}
.ctsm-gallery__placeholder{background:#fff;border:1px dashed #ddd;border-radius:16px;padding:18px;color:#555;}
.ctsm-highlights{display:flex;gap:10px;flex-wrap:wrap;margin:10px 0 14px;}
.ctsm-highlight{background:#fff;border:1px solid #eee;border-radius:14px;padding:10px 12px;box-shadow:0 6px 20px rgba(0,0,0,.04);font-size:14px;}
.ctsm-section{background:#fff;border:1px solid #eee;border-radius:18px;padding:16px;margin:12px 0;box-shadow:0 10px 30px rgba(0,0,0,.05);}
.ctsm-content{color:#333;line-height:1.6;}
.ctsm-sticky{position:sticky;top:16px;display:flex;flex-direction:column;gap:12px;}
.ctsm-pricebox{background:#fff;border:1px solid #eee;border-radius:18px;padding:14px;box-shadow:0 12px 34px rgba(0,0,0,.08);}
.ctsm-pricebox__price{display:flex;gap:10px;align-items:baseline;}
.ctsm-pricebox__price strong{font-size:22px;}
.ctsm-pricebox__fineprint{margin-top:6px;color:#666;font-size:12px;}
.ctsm-hostcard{background:#fff;border:1px solid #eee;border-radius:18px;padding:14px;box-shadow:0 10px 30px rgba(0,0,0,.05);}
.ctsm-hostcard__title{font-size:12px;color:#666;margin-bottom:6px;text-transform:uppercase;letter-spacing:.04em;}
.ctsm-hostcard__name{font-weight:800;font-size:16px;}
.ctsm-hostcard__note{margin-top:6px;color:#555;font-size:13px;}
.ctsm-trust{background:#fff;border:1px solid #eee;border-radius:18px;padding:14px;box-shadow:0 10px 30px rgba(0,0,0,.05);color:#333;}
.ctsm-trust__item{padding:6px 0;border-top:1px solid #f0f0f0;}
.ctsm-trust__item:first-child{border-top:0;}

.ctsm-lb-overlay{position:fixed;inset:0;background:rgba(0,0,0,.72);display:flex;align-items:center;justify-content:center;padding:18px;z-index:999999;}
.ctsm-lb-inner{position:relative;max-width:min(980px,96vw);max-height:90vh;}
.ctsm-lb-inner img{max-width:100%;max-height:90vh;border-radius:18px;display:block;}
.ctsm-lb-close{position:absolute;top:-10px;right:-10px;width:40px;height:40px;border-radius:999px;border:0;background:#fff;color:#111;font-size:24px;cursor:pointer;box-shadow:0 10px 30px rgba(0,0,0,.25);}


/* Map embed */
.ctsm-map__frame{position:relative;width:100%;padding-top:56.25%;border-radius:16px;overflow:hidden;background:#f3f4f6}
.ctsm-map__frame iframe{position:absolute;inset:0;width:100%;height:100%}


/* Host Panel layout improvements (v0.6.10+) */
body.ctsm-host-panel-page #ctsm-host-panel-root{padding:32px 24px;}

/* Host Panel layout v4 (sidebar + centered content) */
body.ctsm-host-panel-page .ctsm-panel-topbar{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-bottom:14px;}
body.ctsm-host-panel-page .ctsm-panel-title{display:flex;align-items:center;gap:10px;flex-wrap:wrap;}
body.ctsm-host-panel-page .ctsm-panel-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap;}
body.ctsm-host-panel-page .ctsm-beta-badge{font-size:12px;line-height:1;padding:6px 10px;border-radius:999px;background:#fff7e6;border:1px dashed rgba(0,0,0,.22);font-weight:700;display:inline-flex;align-items:center;gap:6px;}
body.ctsm-host-panel-page .ctsm-beta-details{margin:10px 0 16px;}
body.ctsm-host-panel-page .ctsm-beta-details > summary{cursor:pointer;font-weight:700;opacity:.85;}
body.ctsm-host-panel-page .ctsm-beta-card{margin-top:10px;}
body.ctsm-host-panel-page .ctsm-beta-card__actions{display:flex;justify-content:flex-end;margin-bottom:8px;}

body.ctsm-host-panel-page .ctsm-panel-shell{display:grid;grid-template-columns:260px minmax(0,1fr);gap:18px;align-items:start;}
body.ctsm-host-panel-page .ctsm-panel-nav{background:#fff;border:1px solid #eee;border-radius:18px;padding:10px;box-shadow:0 10px 30px rgba(0,0,0,.05);position:sticky;top:16px;}
body.ctsm-host-panel-page .ctsm-panel-nav .ctsm-tab{display:flex;align-items:center;justify-content:flex-start;gap:10px;width:100%;margin:0 0 8px 0;border-radius:14px;border:1px solid transparent;padding:10px 12px;background:transparent;}
body.ctsm-host-panel-page .ctsm-panel-nav .ctsm-tab .ctsm-tab-left{display:flex;align-items:center;gap:10px;min-width:0;}
body.ctsm-host-panel-page .ctsm-panel-nav .ctsm-tab .ctsm-tab-ico{width:22px;display:inline-flex;align-items:center;justify-content:center;opacity:.9}
body.ctsm-host-panel-page .ctsm-panel-nav .ctsm-tab .ctsm-tab-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
body.ctsm-host-panel-page .ctsm-panel-nav .ctsm-tab:last-child{margin-bottom:0;}
body.ctsm-host-panel-page .ctsm-panel-nav .ctsm-tab.is-active{background:rgba(0,0,0,.04);border-color:rgba(0,0,0,.06);}
body.ctsm-host-panel-page .ctsm-panel-nav .ctsm-tab.is-disabled{background:rgba(0,0,0,.02);border-color:transparent;}

/* Host panel nav: icon + label layout */
body.ctsm-host-panel-page .ctsm-tab-left{display:inline-flex;align-items:center;gap:10px;min-width:0;}
body.ctsm-host-panel-page .ctsm-tab-ico{width:20px;display:inline-flex;align-items:center;justify-content:center;opacity:.9;}
body.ctsm-host-panel-page .ctsm-tab-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
body.ctsm-host-panel-page .ctsm-panel-main{min-width:0;}

@media (max-width: 980px){
  body.ctsm-host-panel-page .ctsm-panel-shell{grid-template-columns:1fr;}
  body.ctsm-host-panel-page .ctsm-panel-nav{position:relative;top:auto;}
  body.ctsm-host-panel-page .ctsm-panel-nav .ctsm-tab{margin-bottom:6px;}
}

/* Remove legacy fixed widths so the panel can use desktop space */
body.ctsm-host-panel-page .ctsm-card{max-width:none;width:100%;}
body.ctsm-host-panel-page .ctsm-panel{max-width:1200px;width:100%;margin:0 auto;}
body.ctsm-host-panel-page .ctsm-container{max-width:none;width:100%;}
body.ctsm-host-panel-page .ctsm-host-panel{max-width:1600px;margin:0 auto;}
.ctsm-host-form-grid{display:grid;grid-template-columns:minmax(520px,1.35fr) minmax(360px,1fr);gap:24px;align-items:start;}
.ctsm-host-form-grid .ctsm-col{min-width:0;}
@media (max-width: 900px){
  .ctsm-host-form-grid{grid-template-columns:1fr;}
}



/* Host listing editor: right column cards (make it less cargado) */
.ctsm-form-card{border:1px solid #eee;border-radius:16px;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.04);overflow:hidden;margin:0 0 12px}
.ctsm-form-card__head{display:flex;align-items:center;gap:10px;padding:12px 14px;border-bottom:1px solid #f1f1f1;background:rgba(0,0,0,.02)}
.ctsm-form-card__ico{width:26px;height:26px;border-radius:10px;display:inline-flex;align-items:center;justify-content:center;background:rgba(0,0,0,.04)}
.ctsm-form-card__meta{margin-left:auto;font-size:12px;color:#777;font-weight:600}
.ctsm-form-card__body{padding:12px 14px}

.ctsm-field{display:block}
.ctsm-field__label{display:block;font-size:12px;color:#666;font-weight:700;margin:0 0 6px}
.ctsm-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media (max-width: 900px){
  .ctsm-grid-2{grid-template-columns:1fr}
}

/* Details variants inside cards */
.ctsm-details--card{border:1px solid #eee;border-radius:16px;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.04);padding:10px 12px}
.ctsm-details--mini{border:1px solid #eee;border-radius:14px;background:rgba(0,0,0,.015);padding:8px 10px}
.ctsm-details--mini summary{cursor:pointer}
/* Embedded calendar within the listing editor */
.ctsm-host-calendar-embed{margin-top:8px;}
.ctsm-host-calendar-embed .ctsm-host-message{margin-top:10px;min-height:18px;}

/* Inline host calendar inside the create/edit listing form */
.ctsm-form-card--inline-cal .ctsm-host-calendar-embed{max-width:none;}
.ctsm-form-card--inline-cal .ctsm-calendar{width:100%;}

/* Make CTA buttons match the theme accent inside host panel pages */
body.ctsm-host-panel-page .ctsm-btn,
body.ctsm-host-panel-page button.ctsm-btn,
body.ctsm-host-panel-page input.ctsm-btn{
  background:var(--ctsm-hp-btn-bg, var(--ctsm-accent, #0a7)) !important;
  border-color:var(--ctsm-hp-btn-bg, var(--ctsm-accent, #0a7)) !important;
  color:#fff !important;
}
body.ctsm-host-panel-page .ctsm-btn:hover{
  background:var(--ctsm-hp-btn-bg-hover, var(--ctsm-hp-btn-bg, var(--ctsm-accent, #0a7))) !important;
  border-color:var(--ctsm-hp-btn-bg-hover, var(--ctsm-hp-btn-bg, var(--ctsm-accent, #0a7))) !important;
}

/* Safety: normalize any Bootstrap-ish buttons used inside the Host Panel */
body.ctsm-host-panel-page .btn,
body.ctsm-host-panel-page .btn-primary,
body.ctsm-host-panel-page .btn-dark{
  background:var(--ctsm-hp-btn-bg, var(--ctsm-accent, #0a7)) !important;
  border-color:var(--ctsm-hp-btn-bg, var(--ctsm-accent, #0a7)) !important;
  color:#fff !important;
}
body.ctsm-host-panel-page .btn:hover,
body.ctsm-host-panel-page .btn-primary:hover,
body.ctsm-host-panel-page .btn-dark:hover{
  background:var(--ctsm-hp-btn-bg-hover, var(--ctsm-hp-btn-bg, var(--ctsm-accent, #0a7))) !important;
  border-color:var(--ctsm-hp-btn-bg-hover, var(--ctsm-hp-btn-bg, var(--ctsm-accent, #0a7))) !important;
}

body.ctsm-host-panel-page .ctsm-btn.ctsm-btn-ghost,
body.ctsm-host-panel-page .ctsm-btn.ctsm-btn-outline{
  background:transparent !important;
  color:var(--ctsm-accent, #0a7) !important;
}
/* Gallery uploader */
.ctsm-gallery-wrap{margin:10px 0;}
.ctsm-gallery-toolbar{display:flex;gap:10px;align-items:center;flex-wrap:wrap;margin:6px 0;}
#ctsm-gallery-list{list-style:none;margin:8px 0 0;padding:0;display:grid;grid-template-columns:repeat(auto-fill,minmax(92px,1fr));gap:10px;}
#ctsm-gallery-list li.ctsm-gallery-item{position:relative;border:1px solid #ddd;border-radius:10px;overflow:hidden;background:#fff;cursor:move;}
#ctsm-gallery-list li.ctsm-gallery-item img{display:block;width:100%;height:92px;object-fit:cover;}
#ctsm-gallery-list a.ctsm-gallery-remove{position:absolute;top:6px;right:6px;width:22px;height:22px;border-radius:999px;background:rgba(0,0,0,.65);color:#fff;text-decoration:none;display:flex;align-items:center;justify-content:center;font-weight:700;line-height:1;z-index:3;width:26px;height:26px;font-size:18px;}

#ctsm-gallery-list a.ctsm-gallery-remove:hover{background:rgba(0,0,0,.85);}


/* Host calendar range actions */
.ctsm-cal-rangebar{display:flex;justify-content:space-between;align-items:center;gap:10px;margin-top:10px;flex-wrap:wrap}
.ctsm-cal-rangebar__info{color:#333}
.ctsm-cal-rangebar__value{font-weight:600}
.ctsm-cal-rangebar__btns{display:flex;gap:8px;flex-wrap:wrap}
.ctsm-btn-sm{padding:6px 10px;font-size:13px;border-radius:10px}
.ctsm-btn-ghost{background:#fff;color:#111;border:1px solid #ddd}

/* Ensure theme buttons even when WordPress body classes differ */
.ctsm-host-panel .ctsm-btn,
.ctsm-host-panel button.ctsm-btn,
.ctsm-host-panel input.ctsm-btn,
.ctsm-host-form .ctsm-btn,
.ctsm-host-form button.ctsm-btn,
.ctsm-host-form input.ctsm-btn{
  background:var(--ctsm-accent, #0a7) !important;
  border-color:var(--ctsm-accent, #0a7) !important;
  color:#fff !important;
}
.ctsm-host-panel .ctsm-btn:hover,
.ctsm-host-form .ctsm-btn:hover{filter:brightness(0.95)}
.ctsm-host-panel .ctsm-btn:active,
.ctsm-host-form .ctsm-btn:active{transform:translateY(1px)}

.ctsm-host-panel .ctsm-btn.ctsm-btn-ghost,
.ctsm-host-form .ctsm-btn.ctsm-btn-ghost,
.ctsm-host-panel .ctsm-btn.ctsm-btn-outline,
.ctsm-host-form .ctsm-btn.ctsm-btn-outline{
  background:transparent !important;
  color:var(--ctsm-accent, #0a7) !important;
  border-color:var(--ctsm-accent, #0a7) !important;
}

/* Some themes/plugins inject WordPress-style .button elements inside the host panel.
   Make them match the CTSM accent so they're always visible. */
body.ctsm-host-panel-page .ctsm-host-panel .button,
body.ctsm-host-panel-page .ctsm-host-panel a.button,
body.ctsm-host-panel-page .ctsm-host-panel button.button,
body.ctsm-host-panel-page .ctsm-host-panel input.button,
body.ctsm-host-panel-page .ctsm-host-panel input[type="submit"],
body.ctsm-host-panel-page .ctsm-host-panel button:not(.ctsm-btn){
  background:var(--ctsm-accent, #0a7) !important;
  border-color:var(--ctsm-accent, #0a7) !important;
  color:#fff !important;
  border-radius:12px;
}
body.ctsm-host-panel-page .ctsm-host-panel .button:hover,
body.ctsm-host-panel-page .ctsm-host-panel button:not(.ctsm-btn):hover{filter:brightness(.95)}
body.ctsm-host-panel-page .ctsm-host-panel .button:disabled,
body.ctsm-host-panel-page .ctsm-host-panel button:disabled,
body.ctsm-host-panel-page .ctsm-host-panel input:disabled{opacity:.6;cursor:not-allowed}

/* Secondary/ghost buttons */
body.ctsm-host-panel-page .ctsm-host-panel .button.button-secondary,
body.ctsm-host-panel-page .ctsm-host-panel .button.ctsm-secondary{
  background:transparent !important;
  color:var(--ctsm-accent, #0a7) !important;
  border-color:var(--ctsm-accent, #0a7) !important;
}

/* Links in the panel should follow the accent */
body.ctsm-host-panel-page .ctsm-host-panel a{color:var(--ctsm-accent, #0a7)}
body.ctsm-host-panel-page .ctsm-host-panel a:hover{filter:brightness(.85)}

/* Seasons table: tighter and more readable */
.ctsm-seasons-table{width:100%;border-collapse:separate;border-spacing:0 10px}
.ctsm-seasons-table thead th{font-size:13px;color:#6b7280;font-weight:600;text-transform:none}
.ctsm-seasons-table tbody tr{background:#fff;border:1px solid #eee}
.ctsm-seasons-table tbody td{padding:10px 8px;vertical-align:middle}
.ctsm-seasons-table input{width:100%}
.ctsm-seasons-table td.ctsm-season-actions{white-space:nowrap}
.ctsm-seasons-table .ctsm-btn.ctsm-btn-danger{background:#ef4444 !important;border-color:#ef4444 !important;color:#fff !important}
.ctsm-seasons-table .ctsm-btn.ctsm-btn-danger:hover{filter:brightness(.95)}

/* Inline form error styles */
.ctsm-form-errors{margin:10px 0;padding:10px 12px;border:1px solid #fecaca;background:#fef2f2;color:#991b1b;border-radius:12px}
.ctsm-form-errors ul{margin:0;padding-left:18px}
.ctsm-form-errors li{margin:4px 0}
.ctsm-field-error{border-color:#ef4444 !important;box-shadow:0 0 0 3px rgba(239,68,68,.12)}
.ctsm-input-error{border-color:#ef4444 !important;box-shadow:0 0 0 3px rgba(239,68,68,.12)}


/* ------------------------------------------------------------
   Clean single listing layout (no sidebar)
------------------------------------------------------------ */
.ctsm-clean-page{background:#fff}
.ctsm-clean-container{max-width:1280px;margin:0 auto;padding:28px 16px 40px}
.ctsm-clean-header{display:flex;justify-content:space-between;align-items:flex-end;gap:16px;margin-bottom:18px}
.ctsm-clean-title{margin:0;font-size:42px;line-height:1.1}
.ctsm-clean-sub{margin-top:6px;color:#444}
.ctsm-dot{opacity:.6;margin:0 6px}
.ctsm-clean-top{display:grid;grid-template-columns:1.2fr .8fr;gap:18px;align-items:start}
@media(max-width:980px){.ctsm-clean-top{grid-template-columns:1fr}.ctsm-clean-title{font-size:32px}}

.ctsm-clean-gallery__grid{display:grid;grid-template-columns:1.2fr .8fr;gap:10px}
@media(max-width:980px){.ctsm-clean-gallery__grid{grid-template-columns:1fr}}
.ctsm-clean-gallery__main{border-radius:18px;overflow:hidden;box-shadow:0 10px 30px rgba(0,0,0,.08);background:#f7f7f7}
.ctsm-clean-gallery__main img{display:block;width:100%;height:420px;object-fit:cover}
@media(max-width:980px){.ctsm-clean-gallery__main img{height:320px}}
.ctsm-clean-gallery__thumbs{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
.ctsm-thumb{border:0;background:transparent;padding:0;border-radius:16px;overflow:hidden;cursor:pointer;box-shadow:0 8px 18px rgba(0,0,0,.06);outline:2px solid transparent}
.ctsm-thumb img{display:block;width:100%;height:200px;object-fit:cover}
@media(max-width:980px){.ctsm-thumb img{height:140px}}
.ctsm-thumb.is-active{outline-color:#111}
.ctsm-clean-gallery__meta{margin-top:8px}

.ctsm-clean-booking{position:sticky;top:90px;display:flex;flex-direction:column;height:100%}
@media(max-width:980px){.ctsm-clean-booking{position:static}}

.ctsm-booking{background:#fff;border:1px solid #eee;border-radius:18px;padding:16px;box-shadow:0 10px 30px rgba(0,0,0,.06)}
.ctsm-booking__price-main{font-size:22px;font-weight:800}
.ctsm-booking__stats{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:12px 0}
.ctsm-booking__stat{border:1px solid #eee;border-radius:14px;padding:10px}
.ctsm-booking__dates{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:10px}
.ctsm-booking__dates input{width:100%}
.ctsm-booking__guests{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:10px}

/* Guests stepper (Airbnb-style) */
.ctsm-stepper{display:flex;align-items:center;justify-content:space-between;gap:8px;border:1px solid #e6e6e6;border-radius:14px;padding:8px 10px;background:#fff;min-height:42px}
.ctsm-stepper__btn{width:34px;height:34px;border-radius:999px;border:1px solid #e6e6e6;background:#fff;cursor:pointer;font-weight:900;line-height:1}
.ctsm-stepper__btn:disabled{opacity:.45;cursor:not-allowed}
.ctsm-stepper__value{min-width:28px;text-align:center;font-weight:800;font-size:14px;color:#111}
.ctsm-stepper__select{display:none}
.ctsm-booking__total{margin-top:10px;border-top:1px solid #eee;padding-top:10px}
.ctsm-booking__msg{margin-top:10px}
.ctsm-booking__submit{width:100%;margin-top:12px}

.ctsm-clean-availability{margin-top:18px}
.ctsm-clean-availability-footer{margin-top:10px}

/* Keep the lower section aligned with the top (slider vs booking) */
.ctsm-clean-content{display:grid;grid-template-columns:1.2fr .8fr;gap:18px;margin-top:18px}
@media(max-width:980px){.ctsm-clean-content{grid-template-columns:1fr}}

.ctsm-card{background:#fff;border:1px solid #eee;border-radius:18px;padding:16px;box-shadow:0 10px 30px rgba(0,0,0,.05)}
.ctsm-chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}
.ctsm-amenities{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}
.ctsm-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border:1px solid #e6e6e6;
  border-radius:999px;
  font-size:13px;
  background:#fff;
  color:#1f2937;
  box-shadow:0 1px 0 rgba(0,0,0,.03);
}
.ctsm-chip-ico{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:24px;
  height:24px;
  border-radius:8px;
  background:rgba(0,0,0,0.05);
  font-size:14px;
}
.ctsm-chip-txt{display:inline-block}
.ctsm-chip:hover{border-color:#d7d7d7;box-shadow:0 2px 10px rgba(0,0,0,.06)}
.ctsm-chip .ctsm-ico{width:18px;height:18px;display:inline-flex;align-items:center;justify-content:center}
.ctsm-chip .ctsm-ico svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:1.8}
.ctsm-chip .ctsm-ico svg .fill{fill:currentColor;stroke:none}

.ctsm-clean-footer{margin-top:24px;border-top:1px solid #eee;padding-top:16px}


/* Host upload progress */
.ctsm-upload-progress{margin-top:10px;border:1px solid #eee;border-radius:12px;overflow:hidden;background:#fafafa}
.ctsm-upload-progress__bar{height:10px;width:0;background:var(--ctsm-accent,#2d6cdf);transition:width .12s linear}
.ctsm-upload-progress__label{display:block;padding:8px 10px;font-size:12px;color:#333}

#ctsm-gallery-list li.ctsm-gallery-item:hover a.ctsm-gallery-remove{opacity:1;}
#ctsm-gallery-list a.ctsm-gallery-remove{opacity:1;}


/* Clean layout column stacks */
.ctsm-clean-left,.ctsm-clean-right{display:flex;flex-direction:column;gap:18px}

.ctsm-map-wrap iframe{width:100%;border:0;border-radius:14px}

.ctsm-clean-availability-calendar{width:100%}

@media (max-width: 980px){.ctsm-clean-content{grid-template-columns:1fr}.ctsm-clean-booking{position:static;top:auto}}

/* --- Guest calendar UX polish (tooltip + today ring + stronger blocked/free) --- */
.ctsm-guest-tooltip{position:fixed;z-index:99999;min-width:160px;max-width:240px;background:#111;color:#fff;border-radius:12px;padding:10px 12px;box-shadow:0 16px 50px rgba(0,0,0,.28);font-size:12px;line-height:1.25}
.ctsm-guest-tooltip__state{font-weight:800;margin-bottom:4px}
.ctsm-guest-tooltip__state.is-available{color:#bbf7d0}
.ctsm-guest-tooltip__state.is-blocked{color:#fecaca}
.ctsm-guest-tooltip__price{font-size:14px;font-weight:900}
.ctsm-guest-tooltip__price span{font-size:12px;font-weight:600;opacity:.85}

/* Today ring */
.ctsm-cal-day.is-today{box-shadow:0 0 0 2px rgba(0,0,0,.08) inset}

/* Stronger available/block visuals (theme-safe) */
.ctsm-cal-day:not(.is-empty):not(.is-past):not(.is-blocked):not(.is-reserved):not(.is-manual-blocked):not(.is-booking){border-color:#22c55e;background:#ecfdf5}
.ctsm-cal-day.is-blocked{opacity:1;cursor:not-allowed;color:#7f1d1d;border-color:#ef4444;background:repeating-linear-gradient(45deg,#fee2e2,#fee2e2 6px,#fff 6px,#fff 12px)}

/* Mobile sticky CTA for booking (guest): compact bar with total + button */
@media (max-width: 980px){
  body.single-ctsm_listing, body.single-ctsm_listing-clean{padding-bottom:96px;}
  /* Keep the original button normal inside the card; the sticky bar holds the CTA */
  #ctsm-booking-submit{position:static !important;left:auto;right:auto;bottom:auto;z-index:auto;box-shadow:none}

  .ctsm-mobile-bookingbar{
    position:fixed;left:12px;right:12px;bottom:12px;z-index:9999;
    display:flex;align-items:center;justify-content:space-between;gap:12px;
    background:rgba(255,255,255,.92);backdrop-filter:saturate(1.1) blur(10px);
    border:1px solid rgba(0,0,0,.10);
    border-radius:18px;
    padding:10px 12px;
    box-shadow:0 14px 40px rgba(0,0,0,.18);
  }
  .ctsm-mobile-bookingbar__left{min-width:0;display:flex;flex-direction:column;gap:2px}
  .ctsm-mobile-bookingbar__price{font-weight:900;font-size:15px;color:#111;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .ctsm-mobile-bookingbar__meta{font-size:12px;color:#555;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .ctsm-mobile-bookingbar__btn{border-radius:16px;white-space:nowrap;padding:12px 14px}
}


/* --- Host edit: quick sidecard under photos --- */
.ctsm-sidecard{background:#fff;border:1px solid #eee;border-radius:16px;padding:12px 14px;box-shadow:0 1px 2px rgba(0,0,0,.03)}
.ctsm-sidecard__title{font-weight:800;font-size:13px;letter-spacing:.2px;margin-bottom:8px;color:#111}
.ctsm-sidecard__row{display:flex;flex-wrap:wrap;gap:8px}
.ctsm-btn--soft{background:rgba(0,0,0,.06);color:#111;border:1px solid rgba(0,0,0,.06);box-shadow:none}
.ctsm-btn--soft:hover{filter:brightness(.97)}

/* Small button variant used in dense UIs (host calendar quick actions, etc.) */
.ctsm-btn--sm{padding:6px 10px;font-size:12px;line-height:1.1;border-radius:10px}

/* Host: drag & drop ordering for public page sections */
.ctsm-sortlist{list-style:none;margin:10px 0 0;padding:0}
.ctsm-sortitem{display:flex;align-items:center;gap:10px;border:1px solid #eee;border-radius:14px;padding:10px 12px;background:#fff;margin:8px 0;box-shadow:0 1px 2px rgba(0,0,0,.03)}
.ctsm-sortitem__handle{width:26px;height:26px;border-radius:10px;background:rgba(0,0,0,.06);display:flex;align-items:center;justify-content:center;font-weight:900;cursor:grab;user-select:none}
.ctsm-sortitem__label{font-weight:800}
.ctsm-sortitem.ui-sortable-helper{box-shadow:0 12px 30px rgba(0,0,0,.12)}
.ctsm-sortitem.ui-sortable-placeholder{border:2px dashed rgba(0,0,0,.18);background:transparent;visibility:visible !important}

/* Host calendar quick actions */
.ctsm-cal-quick{margin-top:10px;display:flex;flex-wrap:wrap;gap:8px;align-items:center}
.ctsm-cal-quick__label{font-size:12px;opacity:.75;margin-right:2px}

.ctsm-cal-quick__controls{display:flex;gap:8px;flex-wrap:wrap;align-items:center}
.ctsm-cal-quick__select{padding:6px 10px;border:1px solid #e6e6e6;border-radius:10px;font-size:12px;background:#fff}
@media (min-width: 520px){
  .ctsm-cal-quick__controls{flex-wrap:nowrap}
}
.ctsm-sidecard__small{font-size:12px;color:#555;line-height:1.35;margin-top:8px}
.ctsm-sidecard__kbd{display:inline-block;padding:2px 8px;border-radius:999px;background:rgba(0,0,0,.06);font-size:11px;font-weight:700}

/* -------------------------------------------------
   Improve visibility for action buttons (host panel)
   ------------------------------------------------- */
.ctsm-cal-quick .ctsm-btn--soft,
.ctsm-cal-quick-btns .ctsm-btn--soft{
  background: rgba(var(--ctsm-accent-rgb), .10);
  border-color: rgba(var(--ctsm-accent-rgb), .25);
  color: #111;
}

.ctsm-cal-quick .ctsm-btn--soft:hover,
.ctsm-cal-quick-btns .ctsm-btn--soft:hover{
  background: rgba(var(--ctsm-accent-rgb), .16);
}

/* WordPress/admin themes sometimes make disabled buttons too faint */
.ctsm-cal-quick .ctsm-btn:disabled,
.ctsm-cal-quick-btns .ctsm-btn:disabled,
.ctsm-calendar-actions .ctsm-btn:disabled{
  opacity: 1;
  cursor: not-allowed;
  background: rgba(var(--ctsm-accent-rgb), .06);
  border-color: rgba(var(--ctsm-accent-rgb), .18);
  color: rgba(17,17,17,.55);
}

/* Ensure our small variant is applied even if another stylesheet defines it differently */
.ctsm-btn-sm{padding:6px 10px;font-size:12px;line-height:1.1;border-radius:10px}

/* Patch 79: make host-panel buttons clearly visible and theme-colored */
body.ctsm-panel-host .ctsm-btn,
body.ctsm-panel-host button.ctsm-btn,
body.ctsm-panel-host .ctsm-btn--soft,
body.ctsm-panel-host .ctsm-btn--danger,
body.ctsm-panel-host .ctsm-btn--ghost{
  background: var(--ctsm-accent) !important;
  border: 1px solid var(--ctsm-accent) !important;
  color: var(--ctsm-accent-contrast) !important;
  opacity: 1 !important;
}

body.ctsm-panel-host .ctsm-btn--soft{
  background: var(--ctsm-accent-soft) !important;
  color: #111 !important;
}

body.ctsm-panel-host .ctsm-btn--ghost{
  background: transparent !important;
  color: var(--ctsm-accent) !important;
}

body.ctsm-panel-host .ctsm-btn[disabled],
body.ctsm-panel-host button[disabled].ctsm-btn{
  opacity: .55 !important;
  filter: none !important;
  cursor: not-allowed !important;
}

body.ctsm-panel-host .ctsm-cal-quick .ctsm-btn{
  min-width: 98px;
}

/* Patch 79: Host Panel buttons follow theme and remain legible */
body.ctsm-panel-host .ctsm-btn,
body.ctsm-panel-host button.ctsm-btn,
body.ctsm-panel-host .ctsm-cal-quick button,
body.ctsm-panel-host .ctsm-cal-actions button{
  background: var(--ctsm-accent) !important;
  border-color: var(--ctsm-accent) !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-weight: 600;
}
body.ctsm-panel-host .ctsm-cal-quick button,
body.ctsm-panel-host .ctsm-cal-actions button{
  padding: 8px 12px !important;
  font-size: 13px;
}
body.ctsm-panel-host .ctsm-btn:hover,
body.ctsm-panel-host .ctsm-cal-quick button:hover,
body.ctsm-panel-host .ctsm-cal-actions button:hover{
  filter: brightness(0.95);
}
body.ctsm-panel-host .ctsm-btn:disabled,
body.ctsm-panel-host .ctsm-cal-quick button:disabled,
body.ctsm-panel-host .ctsm-cal-actions button:disabled{
  opacity: 0.55 !important;
  cursor: not-allowed !important;
  filter: grayscale(0.05);
}

/* Patch 79: Host Panel buttons follow theme and remain legible */
body.ctsm-panel-host .ctsm-cal-quick button,
body.ctsm-panel-host .ctsm-cal-actions button,
body.ctsm-panel-host .ctsm-season-actions button,
body.ctsm-panel-host .ctsm-amen-actions button{
  background: var(--ctsm-accent) !important;
  border: 1px solid var(--ctsm-accent) !important;
  color: var(--ctsm-accent-contrast, #fff) !important;
  border-radius: 10px !important;
  padding: 8px 12px !important;
  font-weight: 600 !important;
}

body.ctsm-panel-host .ctsm-cal-quick button[disabled],
body.ctsm-panel-host .ctsm-cal-actions button[disabled],
body.ctsm-panel-host .ctsm-season-actions button[disabled],
body.ctsm-panel-host .ctsm-amen-actions button[disabled]{
  opacity: .55 !important;
  filter: grayscale(0) !important;
}

body.ctsm-panel-host .ctsm-cal-quick button:hover:not([disabled]),
body.ctsm-panel-host .ctsm-cal-actions button:hover:not([disabled]),
body.ctsm-panel-host .ctsm-season-actions button:hover:not([disabled]),
body.ctsm-panel-host .ctsm-amen-actions button:hover:not([disabled]){
  background: var(--ctsm-accent) !important;
  filter: brightness(.92);
}

/* Patch 79: Host panel buttons - visible and theme-colored */
body.ctsm-panel-host .ctsm-cal-quick button,
body.ctsm-panel-host .ctsm-cal-actions button,
body.ctsm-panel-host .ctsm-season-actions button,
body.ctsm-panel-host .ctsm-amen-actions button{
  background: var(--ctsm-accent) !important;
  border: 1px solid var(--ctsm-accent) !important;
  color: var(--ctsm-accent-contrast) !important;
  opacity: 1 !important;
}
body.ctsm-panel-host .ctsm-cal-quick button[disabled],
body.ctsm-panel-host .ctsm-cal-actions button[disabled],
body.ctsm-panel-host .ctsm-season-actions button[disabled],
body.ctsm-panel-host .ctsm-amen-actions button[disabled]{
  background: var(--ctsm-accent-soft) !important;
  border-color: var(--ctsm-border) !important;
  color: #555 !important;
  opacity: 1 !important;
}

/* Patch 79: Host panel buttons - visible and theme-colored */
body.ctsm-panel-host .ctsm-cal-quick button,
body.ctsm-panel-host .ctsm-cal-actions button,
body.ctsm-panel-host .ctsm-season-actions button,
body.ctsm-panel-host .ctsm-amen-actions button{
  background: var(--ctsm-accent) !important;
  border: 1px solid var(--ctsm-accent) !important;
  color: var(--ctsm-accent-contrast) !important;
  opacity: 1 !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
}
body.ctsm-panel-host .ctsm-cal-quick button:disabled,
body.ctsm-panel-host .ctsm-cal-actions button:disabled,
body.ctsm-panel-host .ctsm-season-actions button:disabled,
body.ctsm-panel-host .ctsm-amen-actions button:disabled{
  opacity: 0.45 !important;
  background: rgba(0,0,0,0.06) !important;
  border-color: rgba(0,0,0,0.08) !important;
  color: rgba(0,0,0,0.45) !important;
}
body.ctsm-panel-host .ctsm-cal-quick button:not(:disabled):hover,
body.ctsm-panel-host .ctsm-cal-actions button:not(:disabled):hover,
body.ctsm-panel-host .ctsm-season-actions button:not(:disabled):hover,
body.ctsm-panel-host .ctsm-amen-actions button:not(:disabled):hover{
  filter: brightness(0.95);
}

/* Patch 79: Host panel buttons - visible and theme-colored */
body.ctsm-panel-host .ctsm-cal-quick button,
body.ctsm-panel-host .ctsm-cal-actions button,
body.ctsm-panel-host .ctsm-season-actions button,
body.ctsm-panel-host .ctsm-amen-actions button{
  background: var(--ctsm-accent) !important;
  border: 1px solid var(--ctsm-accent) !important;
  color: var(--ctsm-accent-contrast) !important;
  opacity: 1 !important;
}
body.ctsm-panel-host .ctsm-cal-quick button:disabled,
body.ctsm-panel-host .ctsm-cal-actions button:disabled,
body.ctsm-panel-host .ctsm-season-actions button:disabled,
body.ctsm-panel-host .ctsm-amen-actions button:disabled{
  background: var(--ctsm-accent-soft) !important;
  border: 1px solid var(--ctsm-border) !important;
  color: #666 !important;
  opacity: .75 !important;
  cursor: not-allowed !important;
}
body.ctsm-panel-host .ctsm-cal-quick button:disabled,
body.ctsm-panel-host .ctsm-cal-actions button:disabled,
body.ctsm-panel-host .ctsm-season-actions button:disabled,
body.ctsm-panel-host .ctsm-amen-actions button:disabled{
  background: var(--ctsm-accent-soft) !important;
  border: 1px solid var(--ctsm-border) !important;
  color: #555 !important;
  opacity: 0.55 !important;
}


/* Host panel checklist (installer applied) */
.ctsm-checkwrap{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 14px 16px;
  background: #fff;
  margin: 12px 0;
}
.ctsm-checkwrap--new{
  background: #fff7d6;
  border-color: #f2cf66;
}
.ctsm-checkhead{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-bottom: 10px;
}
.ctsm-checkhead-ico{
  display:inline-flex;
  width: 26px;
  height: 26px;
  align-items:center;
  justify-content:center;
  border-radius: 10px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
  flex: 0 0 auto;
}
.ctsm-checktitle{ font-weight: 800; }
.ctsm-checksubtitle{ opacity:.75; font-size: 13px; }
.ctsm-checktip{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  margin-top: 10px;
}
.ctsm-checktip--warn{
  background: rgba(255,255,255,.55);
  border-color: rgba(0,0,0,.10);
}
.ctsm-checktip--info{
  background: #f6f7fb;
}



/* Host panel toast + required-save guidance */
#ctsm-host-toast.ctsm-host-toast{
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 99999;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: #f6f7fb;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  max-width: 360px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .18s ease, transform .18s ease;
  font-weight: 600;
}
#ctsm-host-toast.is-warn{ background: #fff7d6; border-color: #f2cf66; }
#ctsm-host-toast.is-show{ opacity: 1; transform: translateY(0); }

.ctsm-warn-field{
  outline: none !important;
  border-color: #f2cf66 !important;
  box-shadow: 0 0 0 4px rgba(242,207,102,.35) !important;
  background: rgba(255,247,214,.35) !important;
}


/* Host Profile: Language containers */
.ctsm-host-profile .ctsm-lang-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-top:12px;
}
@media (min-width: 900px){
  .ctsm-host-profile .ctsm-lang-grid{ grid-template-columns:1fr 1fr; }
}
.ctsm-host-profile .ctsm-lang-box{
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  padding:14px;
}
.ctsm-host-profile .ctsm-lang-box textarea{
  width:100%;
  margin-top:8px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.12);
  padding:10px 12px;
  resize:vertical;
  background:#fff;
}
.ctsm-host-profile .ctsm-lang-es{
  background: rgba(255, 211, 106, .18); /* amarillo tenue */
  border-color: rgba(255, 211, 106, .55);
}
.ctsm-host-profile .ctsm-lang-en{
  background: rgba(106, 168, 255, .14); /* azul tenue */
  border-color: rgba(106, 168, 255, .45);
}

/* Guest modal */
.ctsm-modal{position:fixed;inset:0;display:none;z-index:99999}
.ctsm-modal.open{display:block}
.ctsm-modal__backdrop{position:absolute;inset:0;background:rgba(0,0,0,.45)}
.ctsm-modal__box{position:relative;max-width:460px;margin:8vh auto;background:#fff;border-radius:16px;box-shadow:0 12px 40px rgba(0,0,0,.18);padding:16px}
.ctsm-modal__head{display:flex;justify-content:space-between;gap:12px;align-items:flex-start}
.ctsm-modal__title{font-weight:800;font-size:18px}
.ctsm-modal__subtitle{font-size:13px;opacity:.75;margin-top:2px}
.ctsm-modal__x{border:0;background:transparent;font-size:22px;line-height:1;cursor:pointer;opacity:.7}
.ctsm-modal__body{margin-top:12px;display:flex;flex-direction:column;gap:10px}
.ctsm-field span{display:block;font-size:13px;margin-bottom:6px;opacity:.85}
.ctsm-field input,.ctsm-field textarea{width:100%;padding:10px 12px;border:1px solid #e6e6e6;border-radius:12px;outline:none}
.ctsm-field small{display:block;font-size:12px;opacity:.7;margin-top:6px}
.ctsm-modal__msg{font-size:13px;padding:8px 10px;border-radius:10px;background:#f6f6f6}
.ctsm-modal__msg.is-error{background:#fff0f0}

/* Pay (deposit) UI */
.ctsm-pay-grid{display:grid;grid-template-columns:1fr;gap:10px;margin:12px 0}
@media(min-width:720px){.ctsm-pay-grid{grid-template-columns:repeat(3,1fr);}}
.ctsm-pay-card{border:1px solid var(--ctsm-border);border-radius:14px;padding:12px;background:#fff}
.ctsm-pay-card-title{font-weight:700;margin-bottom:6px}
.ctsm-pay-card-value{font-size:18px;font-weight:800;margin-bottom:4px}
.ctsm-pay-card-note{font-size:12px;opacity:.85}
.ctsm-pay-card-highlight{box-shadow:0 1px 12px rgba(0,0,0,.05)}
.ctsm-pay-ack{display:block;margin:12px 0;padding:10px;border-radius:12px;background:#f6f6f6;border:1px solid var(--ctsm-border)}
.ctsm-pay-ack input{margin-right:8px}


/* === PRO Listing Cards (Archive/Taxonomy) === */
.ctsm-card.ctsm-listing-card{border:1px solid var(--ctsm-border);border-radius:16px;overflow:hidden;box-shadow:0 6px 20px rgba(0,0,0,.04);padding:0;background:var(--ctsm-card)}
.ctsm-card-img{display:block;aspect-ratio:16/10;background:#f3f4f6;overflow:hidden}
.ctsm-card-img img{width:100%;height:100%;object-fit:cover;display:block}
.ctsm-card-img-placeholder{width:100%;height:100%}
.ctsm-card-body{padding:14px 14px 16px}
.ctsm-card-meta{font-size:12px;color:var(--ctsm-muted);margin-bottom:6px}
.ctsm-card-title{margin:0 0 8px 0;font-size:18px;line-height:1.2}
.ctsm-card-title a{text-decoration:none;color:inherit}
.ctsm-card-facts{font-size:13px;color:var(--ctsm-muted);display:flex;gap:10px;flex-wrap:wrap}
.ctsm-amenities{margin-top:10px;display:flex;gap:8px;flex-wrap:wrap}
.ctsm-chip{display:inline-flex;align-items:center;border:1px solid var(--ctsm-border);border-radius:999px;padding:6px 10px;font-size:12px;background:#fff}
.ctsm-card-price{margin-top:12px;font-weight:800;display:flex;align-items:baseline;gap:6px}
.ctsm-card-price-amount{font-size:18px}
.ctsm-card-price-unit{font-size:12px;color:var(--ctsm-muted);font-weight:600}
.ctsm-card-actions{margin-top:12px;display:flex;gap:10px;flex-wrap:wrap}
.ctsm-btn.primary{background:var(--ctsm-accent);color:var(--ctsm-accent-contrast);border:1px solid var(--ctsm-accent)}
.ctsm-btn.ghost{background:transparent;color:inherit;border:1px solid var(--ctsm-border)}
.ctsm-btn.primary:hover{filter:brightness(.95)}

/* CTA Card (Publish your property) */
.ctsm-card.ctsm-cta-card{padding:16px;display:flex;flex-direction:column;gap:12px;justify-content:space-between}
.ctsm-cta-icon{width:44px;height:44px;border-radius:14px;display:flex;align-items:center;justify-content:center;background:#f3f4f6;font-size:22px;font-weight:900}
.ctsm-cta-title{font-size:16px;font-weight:900;line-height:1.2}
.ctsm-cta-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-top:4px}


/* Legibility overrides (amenities + muted sections) */
body.ctsm-host-panel-page .ctsm-muted .ctsm-btn,
body.ctsm-host-panel-page .ctsm-muted button.ctsm-btn,
body.ctsm-host-panel-page .ctsm-amenities-card .ctsm-btn,
body.ctsm-host-panel-page .ctsm-amenities-card button.ctsm-btn{
  color: #111 !important;
  background: #fff !important;
  border: 1px solid rgba(17,17,17,.25) !important;
  opacity: 1 !important;
  filter: none !important;
  text-shadow: none !important;
}

body.ctsm-host-panel-page .ctsm-muted .ctsm-btn:hover,
body.ctsm-host-panel-page .ctsm-amenities-card .ctsm-btn:hover{
  background: rgba(0,0,0,.04) !important;
  border-color: rgba(17,17,17,.35) !important;
}

/* Keep disabled states clearly disabled (but readable) */
body.ctsm-host-panel-page button.ctsm-btn:disabled,
body.ctsm-host-panel-page .ctsm-btn[disabled]{
  opacity: .45 !important;
  filter: grayscale(1) !important;
  cursor: not-allowed !important;
}

