/* compact-calendar: geringere Zeilenhöhe und Abstände für FullCalendar + Bootstrap */

.compact-calendar {
  font-size: 0.92rem;
  line-height: 1;
}

/* Bootstrap card / list */

.compact-calendar .card-body {
  padding: 0.4rem;
}

.compact-calendar .list-group-item {
  padding: 0.28rem 0.5rem;
  margin: 0;
}

/* FullCalendar - DayGrid */

.compact-calendar .fc .fc-daygrid-day-frame {
  padding: 0.25rem 0.35rem;
  min-height: 34px;
}

/* FullCalendar - TimeGrid (vertikale Verdichtung) */

.compact-calendar .fc .fc-timegrid-slot, .compact-calendar .fc .fc-timegrid-slot .fc-time, .compact-calendar .fc .fc-timegrid-slot .fc-scrollgrid-section {
  min-height: 12px;
  height: 12px;
  line-height: 12px;
  padding: 0;
}

/* FullCalendar - Events */

.compact-calendar .fc .fc-event, .compact-calendar .fc .fc-daygrid-event, .compact-calendar .fc .fc-timegrid-event, .compact-calendar .fc .fc-list-item {
  padding: 0.18rem 0.35rem;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Titel / Zeit kompakter */

.compact-calendar .fc .fc-event-title, .compact-calendar .fc .fc-event-time {
  display: inline-block;
  margin: 0;
  line-height: 1;
  font-size: 0.86rem;
}

/* Kleine Bildschirme: weniger Verdichtung */

@media (max-width: 576px) {
  .compact-calendar {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .compact-calendar .fc .fc-timegrid-slot {
    min-height: 16px;
    height: 16px;
    line-height: 16px;
  }
}

