.vsl-calendar { border:1px solid #eee; border-radius:14px; padding:12px; font-family:system-ui,-apple-system,Segoe UI,Roboto; }
.vsl-cal-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
.vsl-cal-title { font-weight:600; }
.vsl-cal-prev,.vsl-cal-next { background:#fff; border:1px solid #ddd; padding:6px 10px; border-radius:10px; cursor:pointer; }
.vsl-cal-grid { display:grid; gap:6px; }
.vsl-cal-month { margin-bottom:16px; }
.vsl-cal-weekdays,.vsl-cal-week { display:grid; grid-template-columns: repeat(7,1fr); gap:4px; }
.vsl-day { border:1px solid #eee; border-radius:10px; min-height:72px; padding:6px; position:relative; }
.vsl-day .date { font-size:12px; opacity:.7; }
.vsl-day .price { position:absolute; right:6px; bottom:6px; font-weight:600; font-size:12px; }
.vsl-day.closed { background:#f6f6f6; color:#999; }
.vsl-day.unavailable { background:#fff3f3; border-color:#ffd8d8; }
.vsl-day.minstay::after { content:'min'; position:absolute; top:6px; right:6px; font-size:10px; background:#eef; padding:2px 4px; border-radius:6px; }
.vsl-cal-legend { display:flex; gap:10px; font-size:12px; color:#666; margin-top:6px; }
.vsl-legend::before { content:''; width:10px; height:10px; border-radius:3px; display:inline-block; margin-right:6px; vertical-align:-1px; background:#eef; }
.vsl-legend.available::before { background:#e8ffe8; }
.vsl-legend.closed::before { background:#f0f0f0; }
.vsl-legend.minstay::before { background:#eef; }
.vsl-day { cursor: pointer; }
.vsl-day.selected { outline: 2px solid #777; outline-offset: -2px; }
.vsl-cal-loading { padding: 8px; opacity: .7; }
.vsl-cal-error { padding:10px; border:1px solid #f3caca; background:#fff5f5; border-radius:10px; }
.vsl-cal-offer { display:flex; align-items:center; flex-wrap:wrap; gap:8px; padding:10px; border:1px solid #eee; border-radius:12px; background:#fafafa; }
@media (min-width:760px){
  .vsl-cal-grid { grid-template-columns: repeat(2,1fr); }
}
