li.empty-day{
    background-color: transparent;
  }
  .calendar_body{
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
  .wrapper{
    min-width: 600px;
    /* width: 60%; */
    background: #fff;
    color: #000000;
    border-radius: 10px;
  
  }
  .wrapper .calendar_header{
    display: flex;
    align-items: center;
    padding: 25px 30px 10px;
    justify-content: space-between;
  }
  .calendar_header .current-month-year{
    margin: 0;
    font-size: 1.3rem;
    font-weight: 500;
    font-family: "Atma", sans-serif !important;
  }
  .calendar_header .icons{
    height: 38px;
    width: 38px;
    color: #ffcc00;
    font-size: 1.9rem;
    margin: 0 1px;
    cursor: pointer;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
  }
  .calendar_header .icons:hover{
    background-color: #f2f2f2;
  }

.event_calendar{
  margin-bottom: 10%;
  padding: 20px;
  font-size: 1rem;
}
.event_calendar ul.weekdays{ /* need to get these aligned perfectly with rest of cal */
  /* padding: 0 13px; */
  display: flex;
  text-align: center;
  justify-content: space-between;
  width: 100%;
  /* align-items: center;
  justify-items: center; */
  /* grid-template-rows: repeat(1, 100%);
  grid-template-columns: repeat(7, 13.4%); */
} 
.event_calendar ul.days {
  padding: 0 13px;
  display: grid;
  list-style: none;
  color: #000000;
  grid-template-columns: repeat(7, 13.4%); /* SET THE COLUMNS - 5, repeats 100px */
  grid-template-rows: repeat(7, 15%); /* SET 8 ROWS, EQUAL HEIGHT */
  grid-gap: 10px; /* USE GAP INSTEAD OF MARGIN */
  text-align: center;
  align-items: center;
  justify-items: center;
}
.event_calendar .days{
  margin-bottom: 20px;
}
.event_calendar li{
  display: flex;
  color: #333;
  font-family: "Atma", sans-serif !important;
}

.event_calendar .days li{
  position: relative;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin-top: 5px;
  z-index: 1;
  /* background: #f2f2f2; */
  background-size: cover;
  width: 100px;
  height: 100px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 30px;
  font-weight: 600;
}
.days li:not(.event_date, .upcoming_event_preview, .empty-day){
  background-color: #e95aa1;
  color: #fff;
}
.days li.active{
  color: #ffcc00;
}
.days li.event_date{
  content: "";
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  align-items: center;
  height: 100px;
  width: 100px;
  color: #fff;
  border-radius: 5px;
}
.date_bubble {
  width: 100%;
  /* height: 60px; */
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url('../images/1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  padding: 10px;
  z-index: 1;
}
.days li.upcoming_event_preview{
  cursor: pointer;
  position: relative;
  justify-content: space-evenly;
  flex-direction: column;
  content: "";
  margin-top: 5px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  font-size: 30px;
  font-weight: 600;
  color:#fff;
  grid-column: 2/span 3; /* POSITION THE IMAGE LI IN THE 2ND COLUMN AND MAKE IT SPAN 3 COLUMNS TOTAL */
  grid-row: 3/span 2; /* POSITION THE IMAGE LI IN THE 3RD ROW AND MAKE IT SPAN 2 ROWS TOTAL */
}
.upcoming_event_preview .preview_date{
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.days li.event_date:hover{
  z-index: 2;
  transform: scale(1.5);
  transform-origin: top left;
  transition: all 0.2s 0.1s ease-in-out;
}

.event_button_wrapper a{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 140px;
  height: 40px;
  border: none;
  background: #ffcc00;
  color: white;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.7rem;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.2s linear 0s;
  z-index: 3;
}

.event_button_wrapper a::before{
  content: "\f054";
  font-family: FontAwesome;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0px;
  height: 100%;
  width: 30px;
  background-color: #cda812;
  border-radius: 0 50% 50% 0;
  transform: scale(0,1);
  transform-origin: left center;
  transition: all 0.2s linear 0s;
}
.event_button_wrapper a:hover{
  text-indent: 30px;
}
.event_button_wrapper a:hover::before{
  transform: scale(1,1);
  text-indent: 0;
}

/* .fc-timeGridWeek-view .fc-daygrid-day-frame .fc-scrollgrid-sync-inner {

} */


.fc-col-header-cell {
  width: auto;
}

.fc .fc-daygrid-body {
  height: 75px;
}

.fc-dayGridMonth-view .fc-col-header-cell {
  width: 114.28px;
}

.fc-scrollgrid-sync-table {
  height: 569px !important;
}

.available-cell {
  background-color: yellow; /* Your desired color for Sundays */
}

.fc-dayGridMonth-view .fc-scrollgrid-sync-table {
  width: 800px !important;
} 

.fc-view-harness {
  overflow: hidden !important;
  height: 600px !important;
  width: 800px;
  margin: auto;
}

.fc-toolbar {
  margin-left: 10px;
  margin-right: 10px;
}