#Days .listWrapper {
    display: flex;
    overflow: auto;
}

.dataGrid {
    width: 320px;
    min-width: 320px;
    background: white;
    height: 82vh;
    padding: 20px;
    padding-top: 1px;
    border-radius: 10px;
    box-sizing: border-box;
    margin-right: 100px;
    opacity: .5;
    overflow: auto;
    transition: all .3s;
}

.entryLine .input {
    margin: 0px;
    margin-bottom: 5px;
    margin-left: 5px;
}
.entryLine input {
    width: 70px;
    border: 1px solid transparent;
    font-size: 12px;
    padding: 5px;
    text-align: center;
}
.entryLine {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
    border-bottom: 1px solid transparent;
    cursor: default;
    font-size: 13px;
    margin-left: 7px;
}

.entryLine>div {
    flex-grow: 1;
}

.entryLine>div.input {
    flex-grow: 0;
    font-size: 12px;
}

.dataGrid:last-of-type {
    margin-right: calc(50vw - 190px);
}

.dataGrid.selected {
    opacity: 1;
    box-shadow: 0px 0px 20px -10px black;
}

.dataGrid.today {
    opacity: 1;
    border: 3px solid #54d13f;
}

.dataGrid h3 small {
    font-size: 12px;
    margin-top: -2px;
    display: block;
    color: #c5c5c5;
}

.dataGrid h3 {
    background: #7b7b7b;
    margin: -0px -19px;
    padding: 20px;
    border-radius: 6px 6px 0px 0px;
    margin-bottom: 12px;
    color: white;
}

.entryLine:hover {border-bottom: 1px solid #ccc;}

.entryGroup {
    font-weight: bold;
    margin-top: 12px;
    background: #e0e0e0;
    font-size: 14px;
    padding: 8px;
    margin-left: -20px;
    padding-left: 20px;
    margin-bottom: 7px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.entryGroup+div {
    height: 0;
    overflow: hidden;
}

.entryGroup.open+div {
    height: auto;
}