/*@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100;200;300;400;500;600;700&display=swap');

:root {
    --calendar-bg-color: #f5f5f5;
    --calendar-font-color: #111;
    --weekdays-border-bottom-color: #0047FF;
    --calendar-date-hover-color: #0047FF;
    --calendar-current-date-color: #fff;
    --calendar-today-color:   linear-gradient(to bottom, #03a9f4, #2196f3)  #0047FF;
    --calendar-today-innerborder-color: transparent;
    --calendar-nextprev-bg-color: #fff;
    --next-prev-arrow-color : #141414;
    --calendar-border-radius: 16px;
    --calendar-prevnext-date-color: #D0D4DD
}

* {
    padding: 0;
    margin: 0;
}

.calendar {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    max-width: 400px;  change as per your design need  
    min-width: 320px;
    background: var(--calendar-bg-color);
    color: var(--calendar-font-color);
    margin: 0px auto;
    box-sizing: border-box;
    overflow: hidden;
    font-weight: normal;
    border-radius: var(--calendar-border-radius);
}

.calendar-inner {
    padding: 17px 10px;
}

.calendar .calendar-inner .calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}

.calendar .calendar-inner .calendar-body div {
    padding: 4px;
    min-height: 30px;
    line-height: 30px;
    border: 1px solid transparent;
    margin: 10px 2px 0px;
    background-color: #fff;
    font-weight: 500;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 2px;
    border-radius: 4px;
}

.calendar .calendar-inner .calendar-body div:nth-child(-n+7) {
    border: 0px solid transparent;
    border-bottom: 0px solid var(--weekdays-border-bottom-color);
    background: none;
    border:none;
    box-shadow: none;
}

.calendar .calendar-inner .calendar-body div:nth-child(-n+7):hover {
    border: 0px solid transparent;
    border-bottom: 0px solid var(--weekdays-border-bottom-color);
}

.calendar .calendar-inner .calendar-body div>a {
    color: var(--calendar-font-color);
    text-decoration: none;
    display: flex;
    justify-content: center;
}

.calendar .calendar-inner .calendar-body div:hover {
    border: 1px solid var(--calendar-date-hover-color);
    border-radius: 4px;
}

.calendar .calendar-inner .calendar-body div.empty-dates:hover {
    border: 1px solid transparent;
}

.calendar .calendar-inner .calendar-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.calendar .calendar-inner .calendar-today-date {
    display: grid;
    text-align: center;
    cursor: pointer;
    margin: 3px 0px;
    background: var(--calendar-current-date-color);
    padding: 8px 0px;
    border-radius: 10px;
    width: 80%;
    margin: auto;
}

.calendar .calendar-inner .calendar-controls .calendar-year-month {
    display: flex;
    min-width: 100px;
    justify-content: space-evenly;
    align-items: center;
}

.calendar .calendar-inner .calendar-controls .calendar-next {
    text-align: right;
}

.calendar .calendar-inner .calendar-controls .calendar-year-month .calendar-year-label,
.calendar .calendar-inner .calendar-controls .calendar-year-month .calendar-month-label {
    box-shadow: rgb(0 0 0 / 10%) 0px 1px 3px;
    font-size: 20px;
    padding: 4px 10px;
    border-radius: 4px;
    background: #fff;
    font-weight: 700;
}

.calendar .calendar-inner .calendar-body .calendar-today {
    background: var(--calendar-today-color);
    border-radius: 4px;
}

.calendar .calendar-inner .calendar-body .calendar-today:hover {
    border: 1px solid transparent;
}

.calendar .calendar-inner .calendar-body .calendar-today a {
    outline: 2px solid var(--calendar-today-innerborder-color);
}

.calendar .calendar-inner .calendar-controls .calendar-next a,
.calendar .calendar-inner .calendar-controls .calendar-prev a {
    color: var(--calendar-font-color);
    font-family: arial, consolas, sans-serif;
    font-size: 26px;
    text-decoration: none;
    padding: 1px 12px;
    display: inline-block;
    background: var(--calendar-nextprev-bg-color);
    margin: 10px 0 10px 0;
    border-radius: 50%;
}

.calendar .calendar-inner .calendar-controls .calendar-next a svg,
.calendar .calendar-inner .calendar-controls .calendar-prev a svg {
    height: 17px;
    width: 17px;
    font-weight: bold;
}

.calendar .calendar-inner .calendar-controls .calendar-next a svg path,
.calendar .calendar-inner .calendar-controls .calendar-prev a svg path{
    fill: var(--next-prev-arrow-color);
}

.calendar .calendar-inner .calendar-body .prev-dates,
.calendar .calendar-inner .calendar-body .next-dates {
    color: var(--calendar-prevnext-date-color);
    background: none;
}

.calendar .calendar-inner .calendar-body .prev-dates:hover,
.calendar .calendar-inner .calendar-body .next-dates:hover {
  border: 1px solid transparent;
  pointer-events: none;
}

*/


.calendar-contain {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", sans-serif;
    position: relative;
    left: 0;
    right: 0;
    border-radius: 0;
    width: 100%;
    overflow: hidden;
    color: #040605;
}

@media screen and (min-width: 55em) {
    .calendar-contain {
        margin: auto;
    }
}

.title-bar {
    position: relative;
    width: 100%;
    display: table;
    text-align: right;
    background: #f5f7f6;
    padding: 5px 0;
    margin-bottom: 0;
}

.title-bar:after {
    display: table;
    clear: both;
}

.title-bar__prev {
    cursor: pointer;
    background: #fff;
    padding: 10px 20px;
    border-radius: 50%;
    color: #1a1a1a;
    font-size: 20px;
    text-decoration: none;
}

.title-bar__prev:hover {
    background: #eee;
}

.title-bar__next {
    cursor: pointer;
    background: #fff;
    padding: 10px 20px;
    border-radius: 50%;
    color: #1a1a1a;
    font-size: 20px;
    text-decoration: none;
}

.title-bar__next:hover {
    background: #eee;
}


.title-bar__year {
    display: block;
    position: relative;
    float: left;
    font-size: 1rem;
    line-height: 30px;
    padding: 0 0.5rem;
    text-align: center;
    box-shadow: rgb(0 0 0 / 10%) 0px 1px 3px;
    padding: 4px 10px;
    border-radius: 4px;
    background: #fff;
}

.title-bar__year select {
    padding: 2px 6px;
    font-size: 20px;
    font-weight: 700; 
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}



@media screen and (min-width: 55em) {}

.title-bar__month {
    position: relative;
    float: left;
    margin-right: 3px;
    font-size: 1rem;
    line-height: 30px; 
    padding: 0 0.5rem;
    text-align: center;
    box-shadow: rgb(0 0 0 / 10%) 0px 1px 3px;
    padding: 4px 10px;
    border-radius: 4px;
    background: #fff;

}

.title-bar__month select {
    padding: 2px 6px;
    font-size: 20px;
    border: none;
    background: transparent;
    font-weight: 700;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}



@media screen and (min-width: 55em) {}

.calendar__sidebar {
    width: 100%;
    margin: 0 auto;
    float: none;
    /*background: linear-gradient(120deg, #eff3f3, #e1e7e8);*/
    padding-bottom: 0.7rem;
}

@media screen and (min-width: 55em) {
    .calendar__sidebar {
        height: 100%;
        margin-bottom: 0;
    }
}

.calendar__sidebar .content {
    padding: 2rem 1.5rem 2rem 4rem;
    color: #040605;
}

.sidebar__list {
    list-style: none;
    margin: 0;
    padding-left: 1rem;
    padding-right: 1rem;
}

.sidebar__list-item {
    margin: 1.2rem 0;
    color: #2d4338;
    font-weight: 100;
    font-size: 1rem;
}

.list-item__time {
    display: inline-block;
    /*width: 60px;*/
}

@media screen and (min-width: 55em) {
    .list-item__time {
        margin-right: 1rem;
    }
}

.sidebar__list-item--complete {
    color: rgba(4, 6, 5, 0.3);
}

.sidebar__list-item--complete .list-item__time {
    color: rgba(4, 6, 5, 0.3);
}

.sidebar__heading {
    font-size: 2.2rem;
    font-weight: bold;
    padding-left: 1rem;
    padding-right: 1rem; 
}

.sidebar__heading span {
    float: right;
    font-weight: 300;
}

.calendar__heading-highlight {
    color: #2d444a;
    font-weight: 900;
}



@media screen and (min-width: 55em) {
    .calendar__days {
        width: 100%;
        padding: 20px 0px;
    }
}

.calendar__top-bar {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 32px;
    flex: 32px 0 0;
}

.top-bar__days {
    width: 100%;
    padding: 0 5px;
    color: #2d4338;
    font-weight: 100;
    -webkit-font-smoothing: subpixel-antialiased;
    font-size: 0.9rem;
}

.calendar__week {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 1;
    flex: 1 1 0;
}

.calendar__day {
    padding: 4px;
    min-height: 33px;
    line-height: 30px;
    border: 1px solid transparent;
    margin: 12px 2px 0px;
    background-color: #fff;
    font-weight: 500;
    width: 100%;
    box-shadow: rgb(0 0 0 / 16%) 0px 1px 2px;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    display: flex;
}

 .event {
    background-color: #4285f4;
}

.today {
    background-color: #fd588a;
    color:#fff;
}

.calendar__day.event .calendar__date,
.calendar__day.event .calendar__task {
    color: #fff; 
}

.calendar__date {
    color: #040605;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 0.7;
}

@media screen and (min-width: 55em) {
    .calendar__date {
        font-size: 14px;
        padding: 8px;
    }
}

.calendar__week .inactive .calendar__date,
.calendar__week .inactive .task-count {
    color: #c6c6c6;
}

.calendar__week .today .calendar__date {
    color: #fff;
}

.calendar__task {
    color: #040605;
    display: -webkit-box;
    display: flex;
    font-size: 0.8rem;
}

@media screen and (min-width: 55em) {
    .calendar__task {
        font-size: 1rem;
    }
}

.calendar__task.calendar__task--today {
    color: #fd588a;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar-full {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 4px;
}