.calendar_end_date
{
    background-color: darkorange;
}

.calendar_posting_end_date
{
    background-color: steelblue;
}

.calendar_start_date
{
    background-color: forestgreen;
}

.calendar_general
{
    background-color: rgb(163, 151, 64);
}
.months-container
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 3em;
}

.calendar-pickup
{
    padding: 5px;
    font-size: 12pt;
}

div.day-content
{
    min-height: 6em;
    width: 4.75em;
    font-size: smaller;
    line-height: 1.5;
}

.calendar_posting_end_date .day-content {
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px black;
}

.calendar_end_date .day-content{
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px black;
}

.calendar_start_date .day-content{
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px black;
}


tr:hover, th:hover{
    background-color: unset !important;
}

@media all and (max-width: 45em) 
{
    div.day-content
    {
        font-size: 2vw;
        line-height: 2.5vw;
    }
    
}
