
.date-picker-container
{
    position: relative;
}

.date-input:focus
{
    outline: none;
    border-color: unset;
}

.date-picker
{
    position: absolute;
    width: 17em;
    padding: 1em;
    background-color: var(--background-color);
    border-style: solid;
    border-width: 1px;
    border-color: var(--date-picker-border-color);
    z-index: 1000;
}

.date-picker .small-month-picker
{
    display: flex;
    justify-content: center;

    margin-bottom: 1em;
}

.date-picker .small-month-picker .current-month
{
    min-width: 10em;
    text-align: center;
}

.date-picker .days-of-week
{
    border-color: var(--other-month-day-color);
    border-width: 1px;
    border-bottom-style: solid;

    margin-bottom: 0.3em;
}

.date-picker .calendar
{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.date-picker .day,
.date-picker .day-of-week
{
    display: inline-block;
    width: 2em;
    padding: 0.5em 0;
    text-align: center;
    box-sizing: border-box;
}

.date-picker button.day,
.date-picker button.change-showing-date,
.date-picker button.close
{
    font-size: inherit;
    font-family: inherit;
    cursor: pointer;
    border-radius: 5px;
    background-color: inherit;
    border-style: none;
    margin: 0;
    color: inherit;
}

.date-picker button .glyphicon-svg
{
    height: 20px;
    width: 20px;
    vertical-align: baseline;
}

.date-picker .day.weekend:not(.otherMonth):not(.selected),
.date-picker .day-of-week.weekend
{
    color: var(--weekend-day-color);
}

.date-picker .day.selected
{
    background-color: var(--selected-date-background-color);
    color: var(--background-color);
}


.date-picker .day.today
{
    text-decoration: underline;
}

.date-picker .day.otherMonth
{
    color: var(--other-month-day-color);
}
