body {
    background-color: #faffff;
    min-width: 350px;
    max-width: 760px;
}

.loader {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: none;
}

.menu-item {
    margin: 10px;
    float: left;
    cursor: pointer;
    opacity: 15%;
}

.menu-item.active {
    opacity: 100%;
}

.calendar-tbl {
    min-width: 375px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.calendar-tbl-week-header {
    text-align: center;
    font-weight: bold;
}

.calendar-tbl-day {
    padding-top: 20px;
    text-align: center;
    height: 70px;
    font-size: 14px;
    font-weight: bold;
    color: darkgrey;
}

.calendar-tbl-day-quota {
    font-size: 10px;
    font-weight: normal;
}

.scheduled {
    color: green;
    font-weight: bold;
    /* text-shadow: 0 0 25px #00013f; */
    text-shadow: 0 0 15px #00FF00, 0 0 15px #00FF00
}

.calendar-tbl-day-not-current {
    padding-top: 10px;
    text-align: center;
    height: 70px;
    background-color: lightgray;
    color: gray;
    font-size: 12px;
}

.calendar-tbl-day-current {
    padding-top: 10px;
    text-align: center;
    height: 70px;
    cursor: pointer;
    font-size: 12px;
}

.calendar-tbl-day-current:hover {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

@media only screen and (max-width: 768px) {
    .calendar-tbl {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) {
    .calendar-tbl {
        margin-left: 10px;
        width: 750px;
    }
}