.grid-container {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-gap: 5px;
}

.grid-child {
    margin: 0px;
}

.thanksbutton {
    border: #C7C3BF;
    background-color: transparent;
    border-style: solid;
    padding: 5px;
    border-width: thin;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.thanksbuttonenabled {
    border: #777777;
    background-color: transparent;
    border-style: solid;
    padding: 5px;
    border-width: thin;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.thanksbutton:hover {
    background-color: #fce3cf;
}

.thanksbuttonenabled:hover {
    background-color: #fce3cf;
}