.activityLog .activity {
    grid-template-columns: .2fr 2fr .5fr 2fr 1fr 1fr .5fr;
    width: 80vw;
    max-width: 800px;
}

.activity.header {
    font-weight: bold;
    background: #c4c4c4;
    padding: 3px 8px;
    margin: 0px -8px;
    border-radius: 3px;
}

.totalsViewer {
    position: fixed;
    right: 3px;
    font-size: 14px;
    background: black;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    top: 120px;
}

.totalsViewer h5 {
    margin-bottom: 0px;
    font-size: 9px;
}

.activity:hover,.activity:nth-of-type(2n+1):hover {
    background: #c7c6b4;
}

.activity .undoBtn {
    background: #ffffff;
    font-size: 10px;
    padding: 1px 5px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    cursor: pointer;
    border: 1px solid red;
    color: red;
    opacity: .3;
    transition: all .3s;
    margin-top: 2px;
}

.activity .undoBtn:hover {
    background: red;
    color: white;
    opacity: 1;
}