#calendarTable{
    width: 100%;
    min-height: 500px;
}
#calendarTable > tbody > tr >td,
#calendarTable > thead > tr >th
{

    background-color: #5374B2;
    border:1px solid rgba(255, 255, 255, 0.8);
    width: 14.28%;
    position:relative;

}

.weekDay{
    text-align: right;
    margin-right:5px;
    font-size:1.6em;
    color:whitesmoke;
    font-weight: bold;
    text-shadow: 1px 1px 1px #000;
}

.greyWeekDay{
    color:darkgrey;

}
.weekDayName{
    font-size:1.4em;
    color:whitesmoke;
    font-weight: bold;
    text-shadow: 1px 1px 1px #555555;
    text-align: center;
}

.nextMonth{
    border-left:none!important;
    color:whitesmoke;
    text-align: center;
    font-weight: bold;
    font-size:1.6em;
}
.prevMonth{
    border-right:none!important;
    color:whitesmoke;
    text-align: center;
    font-weight: bold;
    font-size:1.6em;
}
.prevMonth:hover, .nextMonth:hover{
    background-color: #2182a3 !important;
}
.monthName{
    border-right:none!important;
    border-left:none!important;
    font-size:1.4em;
    color:whitesmoke;
    font-weight: bold;
    text-shadow: 1px 1px 1px #000;
    text-align: center;
}
.dayCell{
    height:120px;
    vertical-align: top;
    padding-top:10px;
}

.dayContent{
    background-color: #2182a3;
    border:1px solid #374f7b;
    border-radius: 5px;
    font-size: smaller;
}

.dayContent > span {
    color: #ffffff;
}

.eventBadge{
    float:left;
    width:30%;
    height:6px;
    margin:1px;
}

.calendarNav:hover{
    background-color: #0a6ebd!important;
    cursor: pointer;
}
.eventTitleColorBadge{
    margin-left:2px;
    margin-right:2px;
    width:10px;
    min-width: 20px;
    height:6px;

}

.todayCell{
    background-color: #374f7b!important;
}

 .show_more:hover {
    text-decoration: underline!important;
}

.tool_tip {
    position: relative;
}

.tool_tip .tooltiptext {
    visibility: hidden;
    width: 400px;
    background-color: #283858;
    color: white;
    text-align: center;
    font-size: smaller;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 5;
    bottom: 105%;
    left: -45%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tool_tip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tool_tip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
