.de-calendar .fc {
background-color: #f8faf8;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
border: 1px solid #e0e0e0;
}
.de-calendar .fc-event {
background-color: #0052b0 !important;
border-color: #0052b0 !important;
color: white !important;
border-radius: 4px;
padding: 2px 4px;
}
.de-calendar .fc-event:hover {
background-color: #6ab1e2 !important;
}
.de-calendar .fc-toolbar-title {
font-size: 1.5em;
font-weight: 600;
color: #333;
}
.de-calendar .fc-col-header-cell {
font-size: 1em;
font-weight: 500;
color: #555;
}
.de-calendar .fc-daygrid-day-number {
font-size: 1em;
color: #333;
}
.de-calendar .fc-today-button {
background-color: #4CAF50 !important;
border-color: #4CAF50 !important;
color: white !important;
}
.de-calendar .fc-prev-button, .fc-next-button {
background-color: #f0f0f0 !important;
border-color: #e0e0e0 !important;
color: #333 !important;
}
.de-calendar .fc-prev-button:hover, .fc-next-button:hover {
background-color: #e0e0e0 !important;
}
.de-calendar .fc-day-today {
background-color: #e0f2e9 !important;
border: 1px solid #4CAF50 !important;
}
.de-calendar .fc-daygrid-week {
border-bottom: 1px solid #e0e0e0;
}
.de-calendar .fc .fc-toolbar.fc-header-toolbar{
margin-bottom: 0;
}       .de-calendar .fc-header-toolbar {
display: flex;
justify-content: center;
position: relative;
padding: 1em 1em 0;
gap:1em;
}
.de-calendar .fc-toolbar-chunk {
display: flex;
align-items: center;
}
@media (min-width: 500px) {
.de-calendar .fc-toolbar-chunk:first-child {
position: absolute;
left: 1em;
}
.de-calendar .fc-toolbar-chunk:last-child {
position: absolute;
right: 0;
}
}
.de-calendar .fc-toolbar-title {
text-align: center;
flex-grow: 1;
}
.calendar-wrapper{
position: relative;
}
.calendar-wrapper #calendar-loading{
display: none;
position: absolute;
top:50%;
left:50%;
transform: translate(-50%, -50%);
z-index: 9;
}
.lds-ripple,
.lds-ripple div {
box-sizing: border-box;
}
.lds-ripple {
display: inline-block;
position: relative;
width: 80px;
height: 80px;
color:#037E5D;
}
.lds-ripple div {
position: absolute;
border: 4px solid currentColor;
opacity: 1;
border-radius: 50%;
animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
animation-delay: -0.5s;
}
@keyframes lds-ripple {
0% {
top: 36px;
left: 36px;
width: 8px;
height: 8px;
opacity: 0;
}
4.9% {
top: 36px;
left: 36px;
width: 8px;
height: 8px;
opacity: 0;
}
5% {
top: 36px;
left: 36px;
width: 8px;
height: 8px;
opacity: 1;
}
100% {
top: 0;
left: 0;
width: 80px;
height: 80px;
opacity: 0;
}
}