.ui-datepicker {
    background: white;
    color: #221a1a;
    font-size: 12px;
    border: 1px solid #e3e3e3;
    border-radius: 1em;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    padding: 1em;
    display: none;
}
.ui-datepicker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5em;
    margin-bottom: 0.5em;
}
.ui-datepicker-prev, .ui-datepicker-next {
    text-decoration: none !important;
}
.ui-datepicker-prev span, .ui-datepicker-next span {
    display: none;
}
.ui-datepicker-prev:before, .ui-datepicker-next:before {
    color: #bb2b29;
    line-height: 0;
    font-size: 18px;
}
.ui-datepicker-prev {
    order: 2;
}
.ui-datepicker-prev:before {
    content: "<";
}
.ui-datepicker-next {
    order: 3;
}
.ui-datepicker-next:before {
    content: ">";
}
.ui-datepicker-title {
    order: 1;
    flex-grow: 1;
}
.ui-datepicker-year {
    color: #bb2b29;
}
.ui-datepicker-calendar {
    text-align: center;
    th span {
        font-weight: 400;
    }
    td a, td span {
        padding: 0.6em 0.8em;
        display: inline-block;
    }
    a {
        color: #221a1a;
        &:hover {
            color: #bb2b29;
            text-decoration: none;
         }
    }
}
.ui-datepicker-today {
    background: #bb2b29;
    border-radius: 9999px;
    padding: 1px 3px;
    a {
        color: white !important;
    }
}
.ui-datepicker-unselectable {
    color: #999;
}