.jsCalendar * {
    margin: 0;
    padding: 0;
}
.jsCalendar table,
.jsCalendar table th,
.jsCalendar table td {
    border: 0;
    box-sizing: content-box;
}
.jsCalendar table {
    border-collapse: separate;
    color: #000000;
    font-family: "Chewy", system-ui;
    width: 100%;
    text-align: center;
    border-spacing: 4px;
    font-size: 14px;
    margin-bottom: 10px;
}
.jsCalendar tr {
    line-height: 0;
}
.jsCalendar thead .jsCalendar-title {
    height: 40px;
    line-height: 40px;
    width: 100%;
    position: relative;
    text-align: center;
}
.jsCalendar thead .jsCalendar-title .jsCalendar-title-left {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}
.jsCalendar thead .jsCalendar-title .jsCalendar-title-right {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}
.jsCalendar thead .jsCalendar-nav-left,
.jsCalendar thead .jsCalendar-nav-right {
    cursor: pointer;
    height: 32px;
    width: 27px;
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    border-radius: 6px;
    transition: 200ms;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.jsCalendar thead .jsCalendar-nav-left:hover,
.jsCalendar thead .jsCalendar-nav-right:hover {
    background-color: rgba(0, 0, 0, 0.08);
    color: #000000;
}
.jsCalendar thead .jsCalendar-nav-left:after {
    content: url(/ressources/chevron_backward.svg);
    width: 22px;
    height: 22px;
}
.jsCalendar thead .jsCalendar-nav-right:after {
    content: url(/ressources/chevron_forward.svg);
    width: 22px;
    height: 22px;
}
.jsCalendar thead .jsCalendar-title-name {
    font-size: 18px;
    padding: 0 20px;
    font-family: "Chewy", system-ui;
    color: #555;
}
.jsCalendar thead .jsCalendar-week-days th {
    font-size: 15px;
    padding-bottom: 5px;
    color: #555;
}
.jsCalendar thead .jsCalendar-week-days th {
    font-family: "Chewy", system-ui;
    font-size: 15px;
    padding-bottom: 5px;
    color: #555;
    line-height: normal;
}
.jsCalendar tbody td {
    padding: 6px 0;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
    color: #333;
    line-height: normal;
}
.jsCalendar tbody td.jsCalendar-selected {
    background-color: var(--color-rose);
    color: #fff;
    cursor: pointer;
    transition: transform 200ms, background-color 200ms;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.15);
}
.jsCalendar tbody td.jsCalendar-selected:hover {
    transform: scale(1.15);
    background-color: var(--color-vert);
}
.jsCalendar tbody td.jsCalendar-current {
    background-color: var(--color-vert-clair);
}
.jsCalendar tbody td.jsCalendar-previous,
.jsCalendar tbody td.jsCalendar-next,
.jsCalendar tbody td.jsCalendar-unselectable {
    color: #a1a1a1;
}
.jsCalendar thead {
    margin: 4px 4px 0 4px;
}
.jsCalendar tbody {
    margin: 0 4px 4px 4px;
}