/* mod/calendar/css/calendar.css */

.calendar-wrap {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 2px 18px rgba(0,0,0,.06);
}

/* FullCalendar 標題 */
.fc .fc-toolbar-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.fc .fc-button {
  border-radius: 10px;
}

/* 讓事件更像 Google Calendar：圓角 + 內距 */
.fc .fc-event {
  border-radius: 10px;
  padding: 2px 6px;
  font-weight: 600;
}

/* 月視圖方格內留白 */
.fc .fc-daygrid-day-frame {
  padding: 2px;
}

/* 小螢幕工具列自動換行 */
@media (max-width: 576px) {
  .fc .fc-toolbar {
    flex-wrap: wrap;
    gap: 8px;
  }
}
