/* FullCalendar Base Styles */
/* Since v6 doesn't ship with separate CSS, we include minimal required styles */

.fc {
    direction: ltr;
    text-align: left;
}

.fc-theme-standard td,
.fc-theme-standard th {
    border: 1px solid #ddd;
}

.fc-scrollgrid {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.fc-scrollgrid-section>td {
    border: 0;
}

.fc-daygrid-day-frame {
    position: relative;
    min-height: 100%;
}

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

.fc-daygrid-day-number {
    position: relative;
    z-index: 4;
    padding: 4px;
}

.fc-daygrid-event {
    position: relative;
    white-space: nowrap;
    border-radius: 3px;
    font-size: .85em;
}

.fc-event {
    display: block;
    font-size: .85em;
    line-height: 1.4;
    border-radius: 3px;
    border: 1px solid #3788d8;
    background-color: #3788d8;
    font-weight: normal;
    color: #fff;
}

.fc-event-main {
    color: inherit;
    padding: 1px 2px;
}

.fc-timegrid-event {
    position: absolute;
    border-radius: 3px;
}

.fc-timegrid-event-harness {
    position: absolute;
}

.fc-timegrid-slot {
    height: 1.5em;
    border-bottom: 0;
}

.fc-timegrid-slot-label {
    vertical-align: middle;
    border-bottom: 1px solid #ddd;
}

.fc-timegrid-axis {
    border-bottom: 1px solid #ddd;
}

.fc-timegrid-col {
    position: relative;
}

.fc-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
}

.fc-toolbar-chunk {
    display: flex;
    align-items: center;
}

.fc-button {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.4em 0.65em;
    font-size: 1em;
    line-height: 1.5;
    border-radius: 0.25em;
    transition: all 0.15s ease-in-out;
}

.fc-button-primary {
    color: #fff;
    background-color: #2c3e50;
    border-color: #2c3e50;
}

.fc-button-primary:hover {
    background-color: #1a252f;
    border-color: #1a252f;
}

.fc-button-primary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.fc-button-active {
    background-color: #1a252f;
    border-color: #1a252f;
}

.fc-h-event {
    display: block;
    border: 1px solid #3788d8;
    background-color: #3788d8;
}

.fc-v-event {
    display: block;
    border: 1px solid #3788d8;
    background-color: #3788d8;
}

.fc-bg-event {
    background: rgb(143, 223, 130);
    opacity: 0.3;
}

.fc-highlight {
    background: rgba(188, 232, 241, 0.3);
}

.fc-col-header-cell {
    text-align: center;
    padding: 8px 4px;
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

.fc-scrollgrid-sync-table {
    width: 100%;
    border-collapse: collapse;
}

.fc-view-harness {
    flex-grow: 1;
    position: relative;
}

.fc-view-harness-active {
    position: relative;
}

.fc-daygrid-body {
    position: relative;
    z-index: 1;
}

.fc-timegrid-body {
    position: relative;
    z-index: 1;
    width: 100%;
}

.fc-timegrid-divider {
    padding: 0 0 2px;
}

.fc-timegrid-now-indicator-arrow {
    position: absolute;
    left: 0;
    border-color: transparent;
    border-style: solid;
}

.fc-timegrid-now-indicator-line {
    position: absolute;
    left: 0;
    right: 0;
    border-top: 1px solid red;
}

.fc-popover {
    position: absolute;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.fc-daygrid-more-link {
    position: relative;
    z-index: 4;
    cursor: pointer;
    color: inherit;
}

.fc-daygrid-day-events {
    margin-top: 1px;
}

.fc-daygrid-event-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 4px;
}