/* Bus-Kalender-Layout — analog zum Mitarbeiter-Kalender */

.cal-main { padding: 0; }

.cal-3col {
  display: grid;
  grid-template-columns: 1fr 280px;
  min-height: calc(100vh - 0px);
}
.cal-3col:has(> .cal-picker[hidden]) {
  grid-template-columns: 1fr;
}

.cal-center { padding: 24px 28px; min-width: 0; }
.cal-picker { background: var(--color-surface); }

.cal-mount { min-height: 560px; height: calc(100vh - 160px); }

.cal-mount > .cv-root,
.cal-mount > .gdv-root { height: 100%; }

@media (max-width: 1100px) {
  .cal-3col { grid-template-columns: 1fr; }
  .cal-picker { border-left: none; border-top: 1px solid var(--color-border); min-height: 360px; }
}
