.simplepicker {
    position: absolute;
    background: white;
    border: 0.06px solid #ccc;
    padding: 0.5em;
    z-index: 9999;
    display: block;
    width: 15em;
}

.simplepicker.is-hidden {
    display: none;
}

.sp-inner {
    font-family: sans-serif;

    button {
        color: white;
        display: flex;
        margin-left: 0.4em;
        width: 2em;
        height: 2em;
        outline: none;
        border: none;
        border-radius: 50%;
        background-color: #f47930;
        justify-content: center;
        align-items: center;
    }
}

.sp-header {
    display: flex;
    align-items: center;
    gap: 0.7em;
    margin-bottom: 0.7em;
    justify-content: right;
}

.sp-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-size: 0.7em;
    font-weight: bold;
    text-align: center;
}

.sp-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.sp-day {
    display: flex;
    height: 3.1em;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 0.8em;
    justify-content: center;
    align-items: center;
    cursor: default;
}

.sp-day:hover {
    background: #eee;
}

.sp-day.is-selected {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='%23268BD2' cx='16' cy='16' r='16'/%3E%3C/svg%3E");
    background-size: auto;
    background-position: center;
    color: #FFF;
    font-weight: bold;
}

/* Today */
.sp-day.is-today {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='rgba(220, 50, 47, .5)' cx='16' cy='16' r='16'/%3E%3C/svg%3E");
    background-size: 18.8% auto;
    background-position: center bottom;
    color: #DC322F;
}

.sp-month {
    font-weight: bold;
    font-size: 1em;
}

.sp-year {
    border: none;
    background-color: transparent;
    outline: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 3em;
}