/* calendar */

.content.content-calendar {
  min-width: 860px;
}

#calendar {
  min-width: 768px;
  padding: 0 20px;
  font-size: 16px;
}

.fc .fc-daygrid-day-frame {
  min-height: 80px;
}

.fc .fc-daygrid-day.fc-day-today {
  background-color: transparent;
  position: relative;
}

.fc .fc-daygrid-day.fc-day-today::before {
  content: 'TODAY';
  display: block;
  position: absolute;
  right: 4px;
  top: 4px;
  background-color: #ff6666;
  border-radius: 20px;
  color: white;
  padding: 2px 8px;
  font-weight: bold;
  font-size: 12px;
}

.fc .fc-daygrid-day-top {
  flex-direction: row;
}

.calendar-box {
  letter-spacing: -0.5px;
  margin-top: 20px;
}

.calendar-box .calendar-topbar {
  display: flex;
  font-size: 24px;
  font-weight: bold;
  padding: 0 20px;
  gap: 20px;
}

.calendar-topbar .arrow-box {
  display: flex;
  gap: 8px;
  align-items: center;
}

.calendar-topbar .arrow-box > button {
  background-color: #eee;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.calendar-box .calendar-data {
  display: flex;
  min-width: calc(768px - 40px);
  border-bottom: 1px solid #e1e1e1;
  margin: 12px 20px;
  gap: 20px;
}

.calendar-box .calendar-data > .data {
  flex-grow: 1;
  margin: 20px 0;
  padding-right: 20px;
}

.calendar-box .calendar-data > .data:not(:last-child) {
  border-right: 1px solid #e1e1e1;
}

.calendar-box .calendar-data > .data > .title {
  color: #999;
  font-size: 16px;
}

.calendar-box .calendar-data > .data > .value {
  font-weight: bold;
  margin-top: 8px;
  font-size: 20px;
}

.calendar-box .data-badge {
  display: flex;
  gap: 12px;
  margin: 20px 0;
  padding: 0 20px;
}

.calendar-box .data-badge > span::before {
  content: '';
  display: inline-block;
  margin-right: 6px;
  margin-bottom: -1px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background-color: #0079ff;
}

.calendar-box .data-badge > span:nth-child(2)::before {
  background-color: #ff0060;
  /* background-color: gray; */
}

.calendar-box .fc-event-title {
  font-size: 16px;
}

.fc .fc-scrollgrid-section table,
.fc .fc-daygrid-body {
  min-width: 100%;
}

.fc-theme-standard td {
  cursor: pointer;
}
