.buttons-container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}

    .buttons-container .label-container {
        display: inline-block;
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
        color: #999999;
    }

.year-dropdown {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    padding: 5px 20px;
}

.prev-button,
.next-button {
    background: transparent;
    border: none;
    padding: 10px;
}

    .week.highlight {
        border-radius: 5px;
    }

.weeks-wrapper.header {
    border-bottom: 1px solid #eee;
}

.week .day.header {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 120%;
}

.day span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    vertical-align: middle;
}

.day.today span {
    position: relative;
    display: inline-block;
    font-size: 110%;
    color: #006e45;
}

/* weekend */
.week:not(.start-on-monday) .day:first-child,
.week:not(.start-on-monday) .day:last-child {
    color: #999999;
}

/* sunday */
.week:not(.start-on-monday) .day:first-child {
    color: #999999;
}

/* start on monday - weekend */
.week.start-on-monday .day:nth-child(6),
.week.start-on-monday .day:last-child {
    color: #999999;
}

/* start on monday - sunday */
.week.start-on-monday .day:last-child {
    color: #999999;
}

.day.today span::after {
    content: "";
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 2px solid #006e45;
    width: 10px;
    height: 1px;
}

.day.sunday span {
    color: #ff8a80;
}

.week .day.highlight span {
    color: #2196f3;
}

.week .day.selected span {
    background: #1565c0;
    color: #999999;
}

.week .day[disabled="disabled"] span {
    color: #aaa;
    cursor: not-allowed;
}

.months-wrapper .month span {
    display: inline-block;
    padding: 10px;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: black;
}

.special-buttons {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.today-button {
    margin: 0 auto;
    background: transparent;
    border: none;
    padding: 5px;
}
