.dt-box-wrapper {
    max-width: 500px;
}

.dt-dates, .dt-times {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    justify-content: left;
}
.dt-dates {
    max-height: 150px;
    overflow-y: scroll;
}
.dt-date-box, .dt-time-box {
    padding: 5px 4px;
    border: 1px solid #ebebeb;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    background: #fff;
    user-select: none;
    width: 22%;
    text-align: center;
}
.dt-times:empty {
    display: none;
}
.dt-times {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 11px;
    background: #f2f2f2;
    border-radius: 10px;
}
.dt-date-box.active, .dt-time-box.active {
    background: #096f74;
    color: #fff;
    border-color: #007cba;
}
.dt-time-box.disabled {
    background: #f1f1f1;
    color: #999;
    cursor: not-allowed;
}
