body{
    overflow: hidden;
}

.wordwrap { 
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Operwhia 7 */    
   word-wrap: break-word;      /* IE */
}

#monthArea{
    margin-top: 1px;
    text-align: center;
    border: 1px solid black;
    background-color: lightskyblue;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    min-height: 66px;
}

.centered{
    text-align: center;
}

.weekArea .oneSeventh{
    border-bottom: 1px solid black;
    border-top: 1px solid black;
    border-left: 1px solid black;
    overflow: hidden;
    max-height: 45px;
}

.lastColumn{
    border-right: 1px solid black;
}

.calendarContainer .oneSeventh{
    height: 97px;
}

.weekArea{
    margin-top: -20px;
    background-color: yellow;
    color: black;
    height: 45px;
}

.weekArea h5{
    font-weight: 800;
    padding-top: 8px;
    font-size: 20;
}

hr{
    border: 1px solid black;
    color: black;
}

.eventBox{
    height: 90px;
    border-left: 1px solid black;
}

.eventbox p{
    color: black;
    padding-left: 2px;
    padding-right: 2px;
    text-align: center;
}

/*
.eventBox:hover{
    background-color:darkslategrey;
    color: white;
}
*/

.eventBox:hover p{
    color: white;
}

.eventbox h5{
    
}

.eventBox p{
    margin-top: -15px;
}

.inactive{
    color: darkgray;
}

.firstRow{
    margin-bottom: -30px;
}

.firstRow h5{
    font-size: 18pt;
    color: black;
    line-height: 1;
}

.calendarRow{
    margin-top: -36px;
    margin-bottom: -30px;
}

.calendarContainer{
    border: 1px solid black;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-size: 16pt; 
    line-height: 1;
    text-align: center;
    overflow: hidden;
    word-wrap: break-word;
    text-overflow: ellipsis;
}

.currentDay{
    background-color: coral;
    font-weight: 600;
}

.currentDay h5{
    font-weight: 800;
}