
.bkb-date-picker-icon {
    cursor: pointer;
    position: absolute;
    margin-left: -2rem;
    padding: 0.3rem;
}
#bkb-date-picker-dialog {
    backdrop-filter: none;
    background-color: transparent;
}
#bkb-date-picker {
    position: absolute;
    width: 22em;
    max-width: 22em;
    background-color: #fff;
    box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.2);
}
#bkb-date-picker .month-select {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
}
#bkb-date-picker .month-select .previous {
    text-align: left;
}
#bkb-date-picker .month-select .current {
    text-align: center;
}
#bkb-date-picker .month-select .next {
    text-align: right;
}

#bkb-date-picker #year-select-options,
#bkb-date-picker #month-select-options {
    border: 0;
}
#bkb-date-picker table {
    width: 100%;
    table-layout: fixed;
    padding: 0;
    margin: 1rem 0;
    line-height: 1.5em;
}
#bkb-date-picker td,
#bkb-date-picker th {
    text-align: center;
}
#bkb-date-picker a {
    display: block;
    width: 100%;
    color: #333;
    border-radius: 0.18rem;
    text-decoration: none;
}
#bkb-date-picker a:hover {
    background-color: rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}
#bkb-date-picker .current-month {
    background-color: rgba(0, 0, 0, 0.05);
}
#bkb-date-picker .current-date {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
}
#bkb-date-picker .outside-month {
    color: rgba(0, 0, 0, 0.2);
}
#bkb-date-picker .week {
    font-size: 0.7em;
}
