/* SailingBreeze — calendario disponibilità (FIM IBIZA via office.sailingbreeze.es) */
.sb-cal { max-width: 420px; margin: 0 auto; text-align: center; }
.sb-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.sb-cal-head button {
  background: none; border: 1px solid rgba(212,175,55,0.4); color: #d4af37;
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 15px;
  transition: all .25s;
}
.sb-cal-head button:hover { background: rgba(212,175,55,0.12); }
.sb-cal-head button:disabled { opacity: .25; cursor: default; }
.sb-cal-mese {
  font-family: 'Jost', sans-serif; text-transform: uppercase; letter-spacing: 3px;
  color: #fff; font-size: 16px; font-weight: 400;
}
.sb-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.sb-cal-grid .dow {
  font-size: 10px; letter-spacing: 1.5px; color: #8a8578; text-transform: uppercase;
  padding: 6px 0; font-family: 'Inter', sans-serif;
}
.sb-day {
  position: relative; aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #e8e4d8; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; cursor: pointer; font-family: 'Inter', sans-serif; font-weight: 300;
  transition: all .2s; background: rgba(255,255,255,0.02);
}
.sb-day.libero:hover { border-color: #d4af37; color: #d4af37; transform: translateY(-1px); }
.sb-day.occupato {
  color: #5a564c; text-decoration: line-through; cursor: default;
  background: rgba(255,255,255,0.015); border-color: transparent;
}
.sb-day.passato { color: #3d3a33; cursor: default; border-color: transparent; background: none; }
.sb-day.vuoto { visibility: hidden; }
.sb-day.scelto { border-color: #d4af37; background: rgba(212,175,55,0.15); color: #d4af37; }
.sb-legenda {
  display: flex; gap: 22px; justify-content: center; margin-top: 18px;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: #8a8578;
  font-family: 'Inter', sans-serif;
}
.sb-legenda i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 7px; vertical-align: middle; }
.sb-legenda .li { border: 1px solid #d4af37; }
.sb-legenda .oc { background: #3d3a33; }
.sb-stato { margin-top: 14px; font-size: 13px; color: #8a8578; font-family: 'Inter', sans-serif; min-height: 18px; }
.sb-stato a { color: #d4af37; }
@media (max-width: 480px) { .sb-cal-grid { gap: 4px; } .sb-day { font-size: 13px; } }
