/* 초기 설정 */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Arial', sans-serif;
}

/* 캘린더 전체 화면 */
#calendar {
  height: 100%;
}

/* 요일 스타일 */
.fc-day-header {
  font-size: 14px; /* 글씨 크기 */
  font-weight: bold; /* 굵기 */
  text-align: center; /* 가운데 정렬 */
  color: #333; /* 기본 색상 */
}

.fc-day-header:nth-child(1) { /* 일요일 */
  color: red;
}

.fc-day-header:nth-child(7) { /* 토요일 */
  color: blue;
}

/* 이벤트 텍스트 스타일 */
.fc-event-title {
  font-size: 10px; /* 폰트를 작게 설정 */
  white-space: nowrap; /* 줄바꿈 금지 */
  overflow: hidden; /* 넘치는 텍스트 숨김 */
  text-overflow: ellipsis; /* 초과 텍스트 말줄임표 처리 */
  display: block;
}

/* 이벤트 컨테이너 스타일 */
.fc-event {
  padding: 2px; /* 내부 여백 최소화 */
  display: block;
  height: 100%;
}
