/*!
 * FullCalendar v6.1.11
 * Docs & License: https://fullcalendar.io/
 * (c) 2024 Adam Shaw
 */
.fc {
  position: relative;
  direction: ltr;
}
.fc-toolbar.fc-header {
  margin-bottom: 1em;
}
.fc-toolbar.fc-footer {
  margin-top: 1em;
}
.fc-toolbar .fc-toolbar-chunk {
  display: inline-block;
  white-space: nowrap;
  vertical-align: top;
}
.fc-toolbar .fc-toolbar-chunk > * {
  display: inline-block;
  vertical-align: top;
  margin-left: 0.75em;
}
.fc-toolbar .fc-toolbar-chunk > *:first-child {
  margin-left: 0;
}
.fc-button {
  overflow: hidden;
  border: none;
  background: #e9e9e9;
  color: #333;
  cursor: pointer;
  padding: 0.35em 0.75em;
  border-radius: 3px;
  font-size: 1em;
  line-height: 1.6;
  outline: none;
}
.fc-button:disabled {
  opacity: 0.5;
  cursor: default;
}
.fc-button:not(:disabled):active {
  background: #d9d9d9;
}
.fc-button-group {
  display: inline-block;
}
.fc-button-group > .fc-button {
  float: left;
  margin: 0 0 0 -1px;
}
.fc-button-group > .fc-button:first-child {
  margin-left: 0;
}
.fc-view-harness {
  position: relative;
}
.fc-view {
  position: relative;
}
.fc-view > table {
  width: 100%;
}
.fc-col-header {
  position: relative;
}
.fc-col-header-cell {
  text-align: center;
  padding: 2px 4px;
  font-weight: bold;
}
.fc-daygrid-day-frame {
  padding: 2px;
  height: 100%;
}
.fc-daygrid-day-number {
  float: right;
  padding: 0 2px;
}
.fc-daygrid-day {
  background: #fff;
  border: 1px solid #ddd;
}
.fc-day-today {
  background: #fcf8e3;
}
.fc-day-past {
  opacity: 0.5;
}
.fc-day-future {
}
.fc-timegrid-col-frame {
  padding: 0;
}
.fc-timegrid-slot-label {
  padding: 0 4px;
  text-align: right;
}
.fc-timegrid-event {
  padding: 0 1px;
  margin: 1px 2px 0;
  background: #3a87ad;
  color: #fff;
  border-radius: 2px;
}
.fc-timegrid-event.fc-event-mirror {
  background: rgba(58, 135, 173, 0.3);
}
.fc-event-title {
  padding: 0 1px;
}
.fc-event-time {
  padding: 0 1px;
}
.fc-popover {
  position: absolute;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  background: #fff;
  border: 1px solid #ccc;
}
.fc-popover .fc-popover-header {
  padding: 2px 4px;
}
.fc-popover .fc-popover-body {
  padding: 4px;
}
.fc-list-event {
  padding: 8px 10px;
  border-bottom: 1px solid #ddd;
}
.fc-list-event:hover {
  background-color: #f5f5f5;
}
.fc-list-event-title,
.fc-list-event-time {
  display: inline-block;
  margin-right: 10px;
}
.fc-direction-rtl .fc-list-event-title,
.fc-direction-rtl .fc-list-event-time {
  margin-right: 0;
  margin-left: 10px;
}
.fc-daygrid-event-dot {
  background: #3a87ad;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 5px;
}
.fc-daygrid-event {
  margin: 1px 2px;
  font-size: 0.85em;
  cursor: pointer;
}
.fc-scroller {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}
.fc-scroller > .fc-scroller-harness {
  height: 100%;
}
.fc-scrollgrid {
  border: 1px solid #ddd;
  border-collapse: collapse;
}
.fc-scrollgrid > * > tr > th,
.fc-scrollgrid > * > tr > td {
  border: 1px solid #ddd;
}
.fc-scrollgrid-section-header th {
  background: #eee;
  text-align: center;
}
.fc-scrollgrid-section-body td {
  background: #fff;
}
.fc-day-sun,
.fc-day-sat {
  background-color: #f8f8f8;
}
.fc-toolbar-title {
  font-weight: bold;
  margin: 0;
}