.rdp-months {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: fit-content;
}
.rdp-nav {
    width: 100%;
    position: absolute;
    inset-block-start: 0;
    inset-inline-end: 0;
    display: flex;
    align-items: center;
    height: 2.75rem;
}
.rdp-button_next, .rdp-button_previous {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
    -moz-appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 4px;
    appearance: none;
    width: 18px;
    height: 18px;
}
.rdp-button_next {
    right: 82px;
}
.rdp-button_previous {
    left: 82px;
}
.rdp-root {
    padding-top: 16px;
}
.rdp-root * {
    box-sizing: border-box;
}
.rdp-month_caption {
    display: flex;
    justify-content: center;
    align-content: center;
    height: 1.75rem;
    font-weight: bold;
    font-size: large;
}
.rdp-caption_label {
    font-size: 16px;
    z-index: 1;
    position: relative;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    border: 0;
}
.rdp-month_grid {
    border-collapse: collapse;
}
.rdp-weekday {
    padding: 12px 0;
    font-weight: 400;
    font-size: 12px;
    color: #6B7280;
    text-align: center;
    border-bottom: 1px solid #F3F4F6;
}
.rdp-day {
    font-size: 14px;
    color: #374151;
    width: 46px;
    height: 36px;
    text-align: center;
    vertical-align: middle;
}
.rdp-today.rdp-today {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    color: #002FB9;
}
@media (max-width: 840px) {
    .rdp-day {
        height: 29.2px;
    }
    .rdp-months {
        max-width: 100%;
        width: 100%;
    }
    .rdp-month {
        width: 100%;
    }
    .rdp-month_grid {
        width: 100%;
    }
}