.calendarsection .directionNav {
    position: absolute;
    height: 95%;
    width: 5%;
    top: 0;
    left: 0;
    background-color: #eee;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
}
.calendarsection .directionNav:hover {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
}

.calendarsection .directionLabel {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 2em;
    color: #c0c0c0;
}

.calendarsection #calendar {
    margin-left: 50px;
    right: 0;
    top: 0;
    height: 100%;
}

.calendarsection .day {
    height: 100%;
    margin: 0;
    position: relative;
    top: 0;
    overflow: hidden;
    /*width: 14.28%;*/
    width: 20%;
    /* min-width: 100px; */
    float: left;
    outline: 1px solid #eee;
}

.calendarsection .sep {
    position: relative;
    /*height: 4.16%;*/
    height: 8.32%;
    width: 100%;
    left: 0;
    top: 0;
    outline: 1px dotted #eee;
}

.calendarsection .sep.hidden,
.timeLabel.hidden {
    display: none !important;
}

.calendarsection .sep:hover {
    background-color: #eee;
}

.calendarsection .dayName {
    text-align: center;
    font-weight: 300;
    font-size: 1.25em;
}

.calendarsection .dayName:hover {
    background-color: white !important;
}

.calendarsection #wrapper {
    width: 100%;
    height: 95%;
    left: 0;
    top: 0;
    outline: 2px solid #c0c0c0;
}

.calendarsection #sidebar {
    float: left;
    left: 0;
    top: 0;
    height: 100%;
    width: 50px;
}

.calendarsection .timeLabel {
    position: relative;
    /*height: 8.32%;*/
    height: 16.64%;
    width: 100%;
    line-height: 4em;
    left: 0;
    top: 0;
    text-align: center;
    font-size: 1em;
    outline: 1px dotted #eee;
}

.calendarsection .event {
    width: 100%;
    height: auto;
    background-color: #c0c0c0;
    position: absolute;
    top: 4.16%;
    left: 0px;
    color: white;
    padding: 4px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    line-height: var(--lh);
    border: 1px solid white;
    font-size: 0.85rem;
    font-size: 90%;
    min-width: 140px;
    text-align: left;
    cursor: pointer;
}

.calendarsection .truncate-overflow {
    --max-lines: 3;
    position: relative;
    max-height: calc(var(--lh) * var(--max-lines));
    overflow: hidden;
    padding-right: 1rem; /* space for ellipsis */
    max-height: 105%;
    line-height: 1.2;
  }
.calendarsection .truncate-overflow::before {
    position: absolute;
    content: "...";
    /* tempting... but shows when lines == content */
    top: calc(var(--lh) * (var(--max-lines) - 1)); 
    
    /*
    inset-block-end: 0;
    inset-inline-end: 0;
    */
    bottom: 0;
    right: 0;
  }
  /*
  .truncate-overflow::after {
    content: "";
    position: absolute;
    /*
    inset-inline-end: 0;
  
    right: 0;
    width: 1rem;
    height: 1rem;
    background: white;
  }*/