/* カレンダー全体のスタイル（さらにコンパクト） */
#calendar-container {
  width: 220px;
  height: auto;
  background: #fff;
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 9999;
  padding: 3px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.15);
  border: 1px solid #ccc;
  font-size: 11px;
  overflow: hidden;  /* ← スクロールを防止 */
}

/* カレンダー自体にもoverflowを指定（保険） */
.fc {
  overflow: hidden !important;
}


/* 月タイトル */
.fc .fc-toolbar-title {
  font-size: 13px;
  font-weight: bold;
  color: #333;
}

/* 前月・次月ボタン */
.fc .fc-button {
  font-size: 11px;
  padding: 1px 3px;
  height: 22px;
}

/* 曜日ヘッダー */
.fc .fc-col-header-cell-cushion {
  font-size: 11px;
  padding: 0px;
  line-height: 1;
}

/* 各日付セルの数字 */
.fc .fc-daygrid-day-number {
  font-size: 13px !important;
  padding: 0 1px !important;
  color: #000 !important;
  font-weight: 600;
  line-height: 1;
}

/* 各日付セル全体の高さとパディング */
.fc .fc-daygrid-day-frame {
  padding: 1px !important;
  height: 18px !important;
}
.fc-daygrid-day {
  min-height: 18px !important;
  line-height: 1 !important;
  padding: 0 !important;
}

/* 土日祝の背景 */
.fc .sun {
  background-color: #ffeaea !important;
}
.fc .sat {
  background-color: #eaf3ff !important;
}
.fc .holiday {
  background-color: #fff4e6 !important;
}

