/* Two-month availability calendar shared by /book and the admin
   manual-booking form. Class-scoped rules only — the page's own stylesheet
   (booking.css or admin.css) supplies the --bk-* palette and Söhne fonts. */

.bk-calendars {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  gap: 16px;
  align-items: start;
}
@media (max-width: 700px) {
  .bk-calendars { grid-template-columns: auto 1fr auto; }
  .bk-cal-b { display: none; }
}
.bk-cal-nav {
  border: 1px solid var(--bk-line);
  background: var(--bk-panel);
  color: var(--bk-ink);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  margin-top: 2px;
}
.bk-cal-nav:hover { border-color: var(--bk-accent); }
.bk-cal-title {
  font-family: var(--bk-font-wide);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
.bk-cal table { width: 100%; border-collapse: collapse; }
.bk-cal th {
  font-weight: normal;
  font-size: 11px;
  color: var(--bk-muted);
  padding-bottom: 6px;
}
.bk-cal td { padding: 1px; text-align: center; }
.bk-day {
  width: 100%;
  aspect-ratio: 1;
  border: none;
  background: transparent;
  font-family: var(--bk-font);
  font-size: 14px;
  color: var(--bk-ink);
  border-radius: 50%;
  cursor: pointer;
}
.bk-day:hover:not(:disabled) { background: var(--bk-line); }
.bk-day:disabled {
  color: #c9c2b4;
  text-decoration: line-through;
  cursor: default;
}
.bk-day.sel-edge {
  background: var(--bk-accent);
  color: var(--bk-accent-ink);
}
.bk-day.sel-mid { background: #ece5d8; border-radius: 0; }

.bk-hint { font-size: 14px; color: var(--bk-muted); margin: 12px 0 0; }
