
#daycalendar {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

#daycalendar .jsCalendar-title-row {
    display: flex;
    justify-content: space-between;
}

#daycalendar .jsCalendar-title {
    display: flex;
    width: 100%;
    align-items: center;
}

#daycalendar .jsCalendar-week-days {
    display: flex;
    gap: 20px;
}

#daycalendar tbody tr {
    display: flex;
    gap: 20px;
}

.jsCalendar thead .jsCalendar-week-days th,
.jsCalendar tbody td {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    font-size: 16px;
    height: 40px;
    width: 40px;
    margin: 5px 0;
    transition: color 0.1s, background-color 0.2s;

}

.jsCalendar tbody td.jsCalendar-current {
    border-radius: 50%;
}

.jsCalendar.material-theme thead .jsCalendar-week-days th {
    font-size: 16px;
}

.jsCalendar thead .jsCalendar-nav-left,
.jsCalendar thead .jsCalendar-nav-right {
    font-size: 18px;
    height: 40px;
    margin: 0;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#calendar {
    min-height: 1380px;
    margin-bottom: 20px;
}
#legal-container{
    position: inherit;
    margin-left: 10px;
    margin-bottom: 10px;
}

@media screen and (max-width: 425px) {
    #daycalendar {
        width: 100%;
        display: block;
    }

    #daycalendar tbody tr {
        display: flex;
        gap: 5px;
        justify-content: space-between;
    }

    .jsCalendar thead .jsCalendar-week-days th,
    .jsCalendar tbody td {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .jsCalendar table {
        margin: 0;
    }

    #daycalendar .jsCalendar-week-days {
        gap: 5px;
        justify-content: space-between;
    }
    #daycalendar table{
        width: 100%;
    }
}
@media screen and (max-width: 475px) {
    #calendar .fc-header-toolbar .fc-button-group{
        display: none;
    }
}