table.calendar {
    width: 100%;
}

span.current-month {
    color: #44C3A2;
    font-size: 40px;
    font-weight: bold;
}

.calendar-navigation a {
    color: black;
    text-transform: uppercase;
    font-weight: bold;
}
tr.calendar-row th,tr.calendar-row td {
    background: transparent !important;
    border: 0px !important;
}
.calendar-navigation {
    display: flex;
    justify-content: space-between;
}

th.calendar-day-header {
    color: #44C3A2;
    font-size: 20px;
    text-align: center;
    padding: 20px 0px;
}

td.calendar-day, td.calendar-day-current {
    font-weight: bold;
    color: #5D5D5D;
    font-size: 20px;
    text-align: center;
    padding: 20px 0px;

}

tr.calendar-row {
    border-bottom: 1px solid #44C3A2;
}


table.calendar {
    border: 0px;
}

td.calendar-day .dateNumber {
    width: 35px;
    height: 35px;
    margin: 0 auto;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
td.current-date .dateNumber {
    width: 35px;
    height: 35px;
    margin: 0 auto;
    border-radius: 100px;
    display: flex;
    border: 1px solid #44C3A2;
    color: #44C3A2;
    align-items: center;
    justify-content: center;
}

ul#calenderCategories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin-top: 40px;
}

ul#calenderCategories li {
    background: #F2F2F2;
    padding: 5px 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}
ul#calenderCategories li:hover {
    background: #44C3A2;
    color: white;
}
ul#calenderCategories li.active {
    background: #44C3A2;
    color: white;
    cursor: default;
    pointer-events: none;
}

.events-list {
    display: none;
}
td.calendar-day .dateNumber.activeEvent {
    cursor: pointer;
    background: #44C3A2;
    color: white;
    pointer-events: all;
}


.eventTitle {
    font-size: 20px;
    font-weight: bold;
    color: #44C3A2;
}

.eventDesc {
    font-size: 16px;
    color: #5D5D5D;
    font-weight: 500;
}

.eventInner {
    display: flex;
    align-items: center;
    gap: 20px;
}

span.eventCategory {
    display: block;
    text-align: center;
    padding: 5px 10px;
    font-size: 14px;
    background: #44C3A2;
    color: white;
    font-weight: bold;
    min-width: 115px;
}

.eventCategories {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calendar-day.active {
    background: #44c3a2;
}
/** LIST EVENTS CSS **/

.listEventsMain {
    padding: 60px 38px 60px 69px;
    background: #F2F2F2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 700px;
    overflow-y: scroll;
}

.listEventInner {
    padding: 20px;
    background: white;
    display: flex;
    gap: 20px;
}

span.leMonth {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

span.leDay {
    line-height: 1.2;
    font-size: 60px;
    color: #44C3A2;
    font-weight: bold;
}

.listEventDate {
    text-align: center;
    width: 20%;
}

span.leTitle {
    font-size: 34px;
    display: block;
    line-height: 1.1;
}

span.leDesc {
    font-size: 14px;
    display: block;
    line-height: 1.1;
}

.leCategories {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

span.leCategory {
    padding: 5px 10px;
    background: #48c4a0;
    color: white;
}

.listEventDetails {
    width: 80%;
}
/* width */
.listEventsMain::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.listEventsMain::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
.listEventsMain::-webkit-scrollbar-thumb {
   background: #44C3A2;
}

/* Handle on hover */
.listEventsMain::-webkit-scrollbar-thumb:hover {
  background: #44C3A2;
}
@media (max-width: 800px) {
    .eventInner {
        display: flex !important;
        flex-direction: column !important;
    }
    .calendar-navigation {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    ul#calenderCategories {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    th.calendar-day-header {
        font-size: 15px;
    }

    td.calendar-day, td.calendar-day-current {
        font-size: 12px;
        padding: 5px;
    }

    table.calendar {
        width: calc(100% - 20px);
        margin: 0 auto;
    }

    td.calendar-day .dateNumber {
        width: 20px;
        height: 20px;
    }

    .eventTitle {
        font-size: 16px;
        line-height: 1.2;
    }

    .eventDesc {
        font-size: 12px;
        line-height: 1.2;
    }

    span.eventCategory {
        font-size: 10px;
        padding: 0px !important;
    }
    .listEventsMain {
        padding: 20px;
    }

    .listEventInner {
        display: flex;
        padding: 10px;
        flex-direction: column;
    }

    .listEventDate {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .listEventDetails {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    span.leTitle {
        font-size: 20px;
        text-align: center;
    }

    span.leDesc {
        font-size: 12px;
        text-align: center;
        margin-top: 10px;
    }
    .eventTitleDesc {
        text-align: center;
    }
}

.eventDateRange {
    font-size: 14px;
    color: #44C3A2;
    font-weight: 600;
    margin-bottom: 4px;
}

span.leDateSeparator {
    font-size: 24px;
    color: #44C3A2;
    font-weight: bold;
    display: block;
    line-height: 1;
}

p.evkal-no-events {
    text-align: center;
    padding: 40px 20px;
    color: #5D5D5D;
    font-size: 18px;
    background: #F2F2F2;
}