﻿#weekdayswrapper {
    display: grid;
    grid-template-columns: 33px 33px 33px 33px 33px 33px 33px 33px;
    grid-gap: 0px;
    background-color: #fff;
    color: #444;
}

#weekdaysarea {
    border: 1px solid lightgrey;
    border-width: thin;
    position: relative;
    margin-top: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    border-color: lightslategrey;
    border-radius: 0px;
    height: 30px;
    background-color: var(--highlightcolor);
    cursor:pointer;
}

#weekdayslabel {
    position: absolute;
    top: 2px;
    left: 1px;
    height: 26px;
    width: 26px;
    align-content: center;
    padding-left: 0px;
    padding-right: 0px;
    background-color: transparent;
    border: 0px solid black;
    text-align: center;
    color: indigo;
    font-size: 80%;
    font-weight: 500;
    cursor: pointer;
}
