:root{
    --calendar_row_height:30px;
    --calendar_row_margin:10px;
}
.object_name {
    white-space: nowrap;
    line-height: var(--calendar_row_height);
    padding-right: 30px;
    padding-left: 10px;
    margin-bottom: var(--calendar_row_margin);
    border:1px solid;
    background-color: #4b545c;
    color: #fff;
}
#book_calendar{
    padding-top: 60px;
}
.am_calendar {
    width: 100%;
    margin-top: -42px;
    overflow-x: auto;
}
.calendar_day{
    flex: 1;
    line-height: var(--calendar_row_height);
    text-align: center;
    border: 1px solid #fff;
    border-left: none;
    margin-bottom: var(--calendar_row_margin);
    min-width: 25px;
    flex-shrink: 0;
    background-color: #28a745;
    color: #FFFFFF;

}
.calendar_month{
    position: relative;
}
.calendar_header {
    text-align: center;
    line-height: 14px;
}
.calendar_week_day {
    font-size: 10px;
    border: none;
    line-height: 14px;
    margin-bottom: 0px;
}
.calendar_header_year {
    font-size: 13px;
}
.weekend{
    font-weight: bold;
}
.calendar_header,
.calendar_row{
    width: fit-content;
    min-width: 100%;
}
.calendar_day_prev_month,
.calendar_day_next_month{
    opacity: 0.5;
}