#gce-calendar {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.gce-event-modal {
    text-align: left;
    line-height: 1.6;
}

.gce-event-actions {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.5rem;
}

.gce-add-to-calendar {
    display: block;
    padding: 0.5rem 1rem;
    background: #1a73e8;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
}

.fc-scrollgrid,
.fc .fc-scrollgrid-section-body table,
table.fc-col-header {
    border: 0px !important;
    margin-bottom: 0px;
}

.fc-toolbar-title {
    color: #4A5660;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 14px !important;
}

.fc-event {
    cursor: pointer;
    transition: transform 0.2s;
}

.fc-event:hover {
    transform: translateY(-2px);
}
.fc .fc-cell-shaded,
.fc .fc-day-disabled,
.fc .fc-daygrid-day.fc-day-today,
.fc td.fc-day {
    background: none !important;
}

.fc-theme-standard td, .fc-theme-standard th {
    border: 0px !important;
    background: none !important;
}
.fc-daygrid-day .fc-daygrid-day-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto !important;
    width: 40px;
    margin: auto;
    background-color: #fff;
}
.fc-daygrid-day.has-events .fc-daygrid-day-frame {
    cursor: pointer;
    background-color: #f7c32a;
    border-radius: 20%;
}

.fc .fc-daygrid-day-number {
    color: #4a5660;
    font-weight: 700;
    font-family: 'Poppins';
    font-size: 16px;
}

.fc-daygrid-day.has-events .fc-daygrid-day-number {
    color: #fff;
}

.fc-daygrid-day-events,
.fc-daygrid-day-bg {
    display: none !important;
}

.fc-col-header-cell-cushion {
    color: #B5BEC6 !important;
    font-size: 12px;
    text-overflow: unset !important;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}


#sgc-event-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: none;
}
#sgc-event-modal-content {
    padding: 20px;
    max-width: 900px;
    margin: 20vh auto;
    max-height: 60vh;
    min-height: 100px;
}
#sgc-event-modal-content-wrap {
    background: #fff;
    padding: 20px;
    width: 100%;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}

#sgc-event-modal-list {
    overflow-y: auto;
    max-height: 430px;
}

#sgc-event-modal-title {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #4A5660;
}

#sgc-event-modal-close button#sgc-closeModal {
	font-family: 'Poppins', sans-serif;
	border-radius: 8px;
    border-color: #FFCC00;
	font-weight: 700;
    color: #FFCC00;
    cursor: pointer;
}

#sgc-event-modal-close button#sgc-closeModal:hover,
#sgc-event-modal-close button#sgc-closeModal:focus {
    background-color: #FFCC00;
    color: #000;
}



.fc .fc-button {
    background: none !important;
    color: #777 !important;
    border: 0px;
    font-size: 11px;
}

.event-header {
    cursor: pointer;
    padding: 15px 10px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.event-title {
    flex-grow: 1;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
}

.event-title .event-time {
    margin-right: 30px;
}

.toggle-icon {
    font-weight: bold;
    margin-left: 10px;
    color: #f7c32a;
}

.event-details {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity 2s ease;
}

.event-item a {
    color: #FFCC00;
}

.event-item a:hover {
    text-decoration: underline;
}

.event-item.open .event-header {
    border-bottom: 0px;
    padding-bottom: 0px;
}

.event-item.open .event-details {
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
    padding: 0 10px 10px 10px;
    border-bottom: 1px solid #ccc;
    transition: opacity 2s ease, max-height 2s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-item.open .event-header .event-time {
    display: none;
}

#sgc-calendar__ {
	max-width: 350px;
    padding: 30px 20px;
	background-color: #fff;
}