simple-calendar * {
    user-select: none;
}

simple-calendar .calendar{
    padding: 0;
    border: 1px solid #dddddd;
    user-select: none;
    background-color: #fff;
    margin: 1rem 0;
    box-shadow: 0 1px 2px 0 rgba(34,36,38,.15);
    border-radius: .28571429rem;
    border: 1px solid rgba(34,36,38,.15);
}

simple-calendar .move-month {
    cursor: pointer;
}

simple-calendar .prev-month {
    float: left;
    font-size: 20px;
}

simple-calendar .next-month {
    float: right;
    font-size: 20px;
}

simple-calendar .current-month {
    width: 100%;
    text-align: center;
    padding: 10px 8px;
    font-size: 14px;
    font-weight: bold;
}

simple-calendar .week {
    height: 30px;
}

simple-calendar .weekday {
    text-align: center;
}

simple-calendar .week .day:last-child {
    border-right: none;
}

simple-calendar .weekday, .day {
    display: inline-block;
    width: calc(100% / 7);
}

simple-calendar .day {
    height: 30px;
    padding: 2px;
    border: 1px solid #dddddd;
    border-bottom: none;
    border-left: none;
    overflow: hidden;
}

simple-calendar .day:hover {
    cursor: pointer;
}

simple-calendar .day.default {
    background-color: #3e9ddd;
}

simple-calendar .day.event {
    background-color: #fdfcc5;
}

simple-calendar .day.disabled {
    cursor: default;
    color: silver;
    background-color: white;
}

simple-calendar .day-number{
    margin-right: 4px;
    margin-top: 0px;
    text-align: right;
}
simple-calendar .event-name{
    margin-top: -7px;
    font-size: 7px;
    overflow: hidden;
    white-space: nowrap;
}