.calendar-widget-host {
    margin: 18px 0 10px;
    text-align: center;
}

.calendar-widget {
    display: inline-block;
    position: relative;
    text-align: left;
}

.calendar-widget-button {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 5px;
    color: #152820;
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    min-height: 44px;
    padding: 10px 18px;
}

.calendar-widget-button::before {
    content: "\1F4C5";
    margin-right: 8px;
}

.calendar-widget-button:focus,
.calendar-widget-option:focus {
    border-color: #8bc8ff;
    outline: 3px solid rgba(139, 200, 255, 0.45);
    outline-offset: 2px;
}

.calendar-widget-menu {
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 5px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    left: 50%;
    margin-top: 5px;
    min-width: 220px;
    overflow: hidden;
    position: absolute;
    top: 100%;
    transform: translateX(-50%);
    z-index: 20;
}

.calendar-widget-menu[hidden] {
    display: none;
}

.calendar-widget-option {
    background: #fff;
    border: 0;
    border-bottom: 1px solid #ddd;
    color: #152820;
    cursor: pointer;
    display: block;
    font: inherit;
    padding: 11px 14px;
    text-align: left;
    text-decoration: none;
    width: 100%;
}

.calendar-widget-option:last-child {
    border-bottom: 0;
}

.calendar-widget-option:hover {
    background: #e8f2f8;
    color: #152820;
    text-decoration: none;
}

@media (max-width: 420px) {
    .calendar-widget-menu {
        min-width: 200px;
    }
}
