.ichn_booking_timeline_block {
    padding: 1rem;
    border: 1px solid gray;
    /* border-radius: 10px; */
    position: relative;
}
.ichn_booking_timeline_block h1 {
    margin: -1rem -1rem .5em;
    /* border-radius: 10px 10px 0 0; */
    font-size: 2rem;
    padding: .5em;
    background: #ffb16c;
}
.ichn_booking_timeline_calendar_navigation {
    display: flex;
    justify-content: flex-end;
    gap: 1em;
    font-size: 2rem;
    margin-bottom: -1em;
    position: relative;
    z-index: 1000;
}
.ichn_booking_timeline_calendar_navigation a {
    text-decoration: none;
    cursor: pointer;
}
.ichn_booking_timeline_calendar_navigation a.ichn_nav_disabled {
    cursor: default;
    pointer-events: none;
    opacity: .2;
}
.ichn_booking_timeline_calendar_block {
    width: 100%;
    overflow-x: auto;
}
.ichn_booking_timeline_calendar_block_inner {
    width: 100%;
    display: flex;
}
.ichn_booking_timeline_calendar_block_inner > div {
    width: 100%;
}
.ichn_booking_timeline_block table {
    border-collapse: collapse;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 1rem;
}
.ichn_booking_timeline_block table :is(td, th) {
    border: 1px solid #ccc;
    font-weight: 400;
    word-break: break-all;
}
.ichn_booking_timeline_block table thead th {
    font-size: .8em;
    font-weight: 400;
    background: #eee;
}
.ichn_booking_timeline_row th {
    font-size: .8em;
}
.ichn_booking_timeline_row td {
    /* padding: 0 1em; */
    text-align: center;
    padding: 0;
}
.ichn_booking_timeline_row .ichn_booking_timeline_date_cell {
    background: #eee;
    min-width: 3em;
}
a.ichn_booking_timeline_empty_slot {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-size: .5em;
    text-align: center;
    color: gray;
}
.ichn_booking_timeline_row_room1 {
    background: #fefefe;
}
.ichn_booking_timeline_row_room2 {
    background: #f6f6f6;
}
.ichn_booking_timeline_row_today .ichn_booking_timeline_date_cell {
    background: lightsalmon;
}
.ichn_booking_timeline_slot_unavailable {
    opacity: .5;
    pointer-events: none;
    background: #ccc;
}
:is(.ichn_booking_timeline_row_past, .ichn_booking_timeline_row_invalid) :is(th, td) {
    opacity: .5;
    pointer-events: none;
}
.ichn_booking_form_title {
    scroll-margin-top: 2em;
}
td.ichn_slot_selected {
    background: #dff;
}