/*////////////////////*/
/* CALENDAR ONLY CSS */
/*////////////////////*/

.calendar-container table {
    width: 100%;
    background-color: #f1f1f1;
}

.calendar-day-header {
    background-color: #f7f7f7;
    color: #0077e6;
    text-align: center;
    font-size: 18px;
    /* font-weight: lighter; */
    padding: 10px 20px;
    border: 1px solid #e4e4e4;
}

.calendar-hour-header {
    text-align: center;
    background-color: #f7f7f7;
    color: #848484;;
    border-bottom: 1px solid #e4e4e4;
    position: relative;
}
.calendar-hour-header p {
    position: absolute;
    width: 100%;
    top: -10px;
}

.calendar-day-cell {
    position: relative;
}

.calendar-separator {
    border-bottom: 1px solid #e4e4e4;
}


.calendar-day-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    border-left: 1px solid #e4e4e4;
}

.calendar-day-event {
    width: 100%;
    position: absolute;
    padding: 8px;
    background-color: #0077e6;
    color: white;
    border-radius: 8px;
}