
.Wrapper
{
    font-size: xx-large;
    display: grid;
    height: fit-content;
    min-height: 100px;
    min-width:700px;
    grid-template-columns: repeat(7,14.285%);
    width:auto;
    row-gap: 0;
    position: relative;

}

.weekbox
{
    width:100%;
    display:grid;
    grid-template-columns: subgrid;
    align-items: stretch;
    min-height: 100px;
}
.daysofweek
{
    text-align: center;
    font-size: larger;
    min-height: fit-content;
    display:grid;
    grid-template-columns: subgrid;
}
.DayTitle
{
    text-align: center;
    color:black;
    font-weight: bolder;
    background-color: red;
}
.day
{
    color:black;
    text-align:center;
    font-size:medium;
    display:grid;   
    grid-template-columns: subgrid;
    border-top: solid;
    border-color:rgba(0,0,0,.7);

}
.eventbox
{
    font-size:medium;
    font-weight: bold;
    text-align: center;
    height: fit-content;
}

.vertical-line
{
    border-left:solid;
    border-width: 2px;
    border-style: solid;
    border-color: rgba(0,0,0,.3);
    z-index: -1;
}





