
/*-- Reset --*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box ;
}


.calendar {
    height: 100vh;
    width: 100vw;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: white;
    background-color: #dddddd;

}
.header {
    color: black;
    height: 5rem;
    width: 80rem;

    padding: 2rem ;
    display: flex;

}
.logo {
    height: 2rem;
    align-self: center;
}
.pagetitle {
    font-size: 1.5rem;
    padding-left: 2rem;
    align-self: center;
    font-weight: 800;

}

.pagetitle:nth-of-type(2) {
    font-size: .75rem;
    margin-left: auto;
    margin-right: 8rem;
    font-weight: 400;
    font-style: italic;

}
.cal-container {
    height: calc(100vh - 5rem);
    padding-left: 25px;
    display: flex;
    background-color: #dddddd;
}

.sidebar {
    background-color: #dddddd;
    width: 7rem;
    display: flex;
    flex-direction: column;
}

.menu {
    background-color: #dddddd;
}

.menuitem {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-weight: 500;
    font-size: 13px;
    border: 0;
    background-color: #dddddd;
    color: black;
}


.msp {
    padding: 10px 0;
    margin: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-weight: 900;
    font-size: 13px;
    border: 0;
    color: navy;
}

.spacer {
    padding: 19px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-weight: 500;
    font-size: 13px;
    border: 0;
    background-color: #dddddd;
}

.menuitem-active{
    background-color: black;

    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-weight: 500;
    font-size: 13px;
    border: 0;
    color: yellow;
    position: relative;
}
.menuitem:hover {
    background-color: #2B363B;
    color: #fff;
    cursor: pointer;
}
.menuitem-active::before {
    content: '';
    width: 3px;
    height: 100%;
    background-color: yellow;
    position: absolute;
    left: 0;
    top: 0;
}


.months {

    margin-top: 1rem;
    margin-left: 4rem;
    width: 60rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.closed {
    color: black;
    background-color: darkgrey;
}

.tba {
    background-color: slategray;
    color: red;
}

.not {
    background-color: rgb(29, 29, 1);
    color: white;
}

.numeric {
    font-size: .8em;
    text-align: right;
    padding-right: .1em;
    font-weight: bold;
    margin-bottom: 1.25em;
}
.numeric-center {
    font-size: .8em;
    text-align: center;
    padding-right: .1em;
    font-weight: bold;
    margin-bottom: 1.25em;
}

.open {
    background-color: forestgreen;
    color: black;
}

.monthtitle {
    font-weight: 800;
    font-size: 2rem;
    color: #000000;
    padding-top: 30px;
    padding-bottom: 20px;
    text-align: center;
    width:100%;
}
.visible {
    display: block;
}

.invisible {
    display: none;
}
.days {
    width: 80rem;

}

.table-day {
    text-align: center;
    font-size: 1em;
    background-color: lightslategrey;
    color: black;
    width: 5em;
    height: 1.5em;
}

.table {
    width: 60rem;
}
.table-cell {
    height: 6em;
    width: 5em;
    vertical-align: text-top;
}
.keyitem {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-weight: 500;
    font-size: 13px;
    border: 0;
}
.maybe {
    color: black;
    background-color: darkgoldenrod;
}
.entry {
    text-align: center;
    font-weight: bold;
}

.holiday {
    color: white;
    background-color: darkred;
}

.line2 {
    text-align: center;
    font-size: .8em;
    font-style: italic;
    font-weight: bold;
}

.pending {
    color: black;
    background-color: lightskyblue;
}

.booked {
    color: lightyellow;
    background-color: rgb(29, 29, 250);
}