﻿/* default.css 에 있는 것 중 변경 사항 */
.fc-unthemed td.fc-today {
  background: #fbc850;
}

/* -------- */
.mb20 {
  margin-bottom: 20px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-gap4 {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.flex-gap6 {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.flex-gap4-right {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: flex-end;
}

.flex-gap6-right {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
}

.flex-column-gap6 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
}


/* -------- */
h2.main-header-box {
  width: 1230px;
  height: 35px;
  line-height: 35px;
  border: 1px solid;
  border-radius: 5px 5px 0px 0px;
  background: linear-gradient(to bottom, #FFFFFF 0%, #E9F0F3 100%);
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  padding-left: 20px;
  margin: 0;
}	