/**************************** 캘린더 ************************/

#calendar {
  height: 100%;
}

/* 월-금 날짜 검은색 */
.fc-day-mon a,
.fc-day-tue a,
.fc-day-wed a,
.fc-day-thu a,
.fc-day-fri a {
  color: black;
  text-decoration: none;
}

.fc-daygrid-day.fc-day-mon {
  background-color: #ffd6cd !important;
}

.fc-highlight {
  background-color: #ec5538 !important;
}

/* 일요일 날짜 빨간색 */
.fc-day-sun a {
  color: #ec5538;
  text-decoration: none;
}

/* 토요일 날짜 파란색 */
.fc-day-sat a {
  color: #184da0;
  text-decoration: none;
}

/* 오늘 날짜 배경색 없애기 */
.fc-day-today {
  background: #fff !important;
  border: none !important;
}

.fc-toolbar-title {
  color: black;
}

.fc-event-title {
  cursor: default;
}

/**************************** 캘린더 끝************************/

/* 들여쓰기 */
.in {
  text-indent: 15px;
}

/* 삭제 기간 자동으로 표시해주는 부분 */
.selected_period {
  width: 100%;
  background-color: #ec5538;
  font-size: 30px;
  color: white;
  margin-top: 10px;
  margin-bottom: 10px;

  text-align: center;
  line-height: 30px 0;
}

/* 하단 삭제 버튼 : 가운데 정렬과 호버 커스텀 */
.delete_button_area {
  text-align: center;
}

#btn_delete_save {
  width: 15%;
  color: #ec5538;
  border-color: #ec5538;
}

#btn_delete_save:hover {
  background-color: #ec5538;
  color: white;
}

/* 권한 체크 전에 페이지 안보이기 */
.hide {
  display: none;
}