
.fc .fc-button-group {
    display: inline-flex;
    position: relative;
    vertical-align: middle;
    gap: 2px;
}

    .calendar-page-card {
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        overflow: hidden;
    }

    .calendar-sidebar {
        border-right: 1px solid #e5e7eb;
        min-height: 720px;
        background: #ffffff;
    }

    .calendar-main-area {
        min-height: 720px;
        background: #ffffff;
    }

    .create-event-btn {
        width: 100%;
        padding: 11px 20px;
        border-radius: 10px;
        font-weight: 500;
    }

    .mini-calendar {
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 15px;
    }

    .mini-calendar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 14px;
    }

    .mini-calendar-header h6 {
        margin: 0;
        font-weight: 600;
        color: #343a40;
    }

    .mini-calendar-nav {
        border: 0;
        background: transparent;
        color: #74788d;
        font-size: 18px;
        padding: 0 4px;
    }

    .mini-calendar-table {
        width: 100%;
        text-align: center;
        table-layout: fixed;
    }

    .mini-calendar-table th {
        font-size: 11px;
        font-weight: 600;
        color: #74788d;
        padding-bottom: 9px;
    }

    .mini-calendar-table td {
        font-size: 12px;
        color: #495057;
        padding: 5px 2px;
    }

    .mini-date {
        width: 27px;
        height: 27px;
        border-radius: 50%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .mini-date:hover {
        background: #edf2ff;
        color: #556ee6;
    }

    .mini-date.active {
        background: #556ee6;
        color: #ffffff;
    }

    .mini-date.muted {
        color: #c1c5cc;
    }

    .calendar-section-title {
        color: #343a40;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 14px;
    }

    .calendar-filter-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
    }

    .calendar-filter-label {
        display: flex;
        align-items: center;
        gap: 9px;
        color: #495057;
        font-size: 13px;
        cursor: pointer;
    }

    .calendar-color-box {
        width: 13px;
        height: 13px;
        border-radius: 4px;
        display: inline-block;
    }

    .calendar-toolbar-title {
        font-size: 22px;
        font-weight: 600;
        color: #343a40;
    }

    #eventCalendar {
        padding: 5px;
    }

    .fc {
        font-family: inherit;
    }

    .fc .fc-toolbar-title {
        font-size: 21px;
        font-weight: 600;
        color: #343a40;
    }

    .fc .fc-button {
        border-radius: 8px !important;
        padding: 7px 13px !important;
        font-size: 13px !important;
        text-transform: capitalize !important;
        box-shadow: none !important;
    }

    .fc .fc-button-primary {
        background: #ffffff;
        border-color: #d6d9df;
        color: #495057;
    }

    .fc .fc-button-primary:hover {
        background: #f3f5f9;
        border-color: #c8ccd3;
        color: #343a40;
    }

    .fc .fc-button-primary:not(:disabled).fc-button-active,
    .fc .fc-button-primary:not(:disabled):active {
        background: #556ee6;
        border-color: #556ee6;
        color: #ffffff;
    }

    .fc .fc-today-button {
        background: #ffffff !important;
        border-color: #d6d9df !important;
        color: #343a40 !important;
    }

    .fc-theme-standard td,
    .fc-theme-standard th {
        border-color: #e8eaed;
    }

    .fc .fc-col-header-cell {
        background: #fafbfc;
        padding: 10px 0;
    }

    .fc .fc-col-header-cell-cushion {
        color: #495057;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .fc .fc-daygrid-day-number {
        color: #495057;
        font-size: 12px;
        padding: 8px;
    }

    .fc .fc-daygrid-day.fc-day-today {
        background: #f3f6ff;
    }

    .fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
        background: #556ee6;
        color: #ffffff;
        width: 27px;
        height: 27px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 4px;
        padding: 0;
    }

    .fc .fc-event {
        border: 0;
        border-radius: 5px;
        padding: 3px 5px;
        cursor: pointer;
        font-size: 12px;
    }

    .fc .fc-event-title {
        font-weight: 500;
    }

    .event-detail-row {
        display: flex;
        gap: 12px;
        margin-bottom: 15px;
    }

    .event-detail-icon {
        width: 38px;
        height: 38px;
        border-radius: 9px;
        background: #edf2ff;
        color: #556ee6;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 19px;
        flex-shrink: 0;
    }

    .event-detail-label {
        color: #74788d;
        font-size: 12px;
        margin-bottom: 3px;
    }

    .event-detail-value {
        color: #343a40;
        font-size: 14px;
        font-weight: 500;
    }

    @media (max-width: 991px) {
        .calendar-sidebar {
            border-right: 0;
            border-bottom: 1px solid #e5e7eb;
            min-height: auto;
        }

        .calendar-main-area {
            min-height: auto;
        }
    }

    @media (max-width: 767px) {
        .fc .fc-toolbar {
            flex-direction: column;
            gap: 12px;
            align-items: stretch;
        }

        .fc .fc-toolbar-chunk {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        .fc .fc-toolbar-title {
            text-align: center;
            font-size: 18px;
        }
    }
    .fc-daygrid-dot-event:hover {
        background-color: #01030c !important;
    }