#calendar table {
    background-color: white;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #eaeaea;
}

#calendar table th,
#calendar table td {
    padding: 0.5rem 0.75rem;
    border: 1px solid #eaeaea;
    color: black;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#calendar .jsCalendar-previous,
#calendar .jsCalendar-next {
    opacity: 0.2;
}

#calendar .jsCalendar-previous span,
#calendar .jsCalendar-next span {
    opacity: 0;
}

#calendar .jsCalendar-current {
    background-color: rgb(29, 29, 29);
    color: white;
}

#calendar table td {
    font-size: 1.8rem;
    line-height: 1.6rem;
}

#calendar table td span {
    font-size: 1.1rem;
    font-family: Arial;
    color: crimson;
}


#calendar table td span em {
    color: rgb(13, 78, 139);
    font-weight: bold;
    text-decoration: underline;
}

#calendar .jsCalendar-current em {
    color: rgb(172, 196, 218) !important;
}

.jsCalendar-title * {
    display: inline-block;
}

.jsCalendar-title-name {
    flex: 1;
}

.jsCalendar-nav-left:after {
    content: '<';
    padding: 1rem;
}

.jsCalendar-nav-right:before {
    content: '>';
    padding: 1rem;
}