
div.filters {
    display: grid;
    grid-template-columns: repeat(auto-fill, 150px);
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    text-align: center;
    align-content: center;
    margin: 30px;
}

div.filters > a {
    flex-grow: 1;
    border: 2px solid var(--main-color);
    border-radius: 30px;
    color: var(--main-color);
    background-color: white;
}

div.filters > a.selected {
    background-color: var(--color3);
}

div.filters > a:hover {
    text-decoration: none;
}

div.solution {
    border-top: 1px solid var(--main-color);
    padding: 10px;
    margin-bottom: 5px;
}

div.solution > * {
    width: 50%;
}

div.solution > .comment-wrapper {
    display: flex !important;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    margin: 10px;
}

div.solution input[type=text], div.solution textarea {
    border: 1px solid lightgray;
    border-radius: 4px;
    transition: 0.4s;
    padding: 4px;
}

div.solution input[type=text]:focus, div.solution textarea:focus {
    outline: none;
}

div.solution input[type=text] {
    min-width: 40px;
    max-width: 40px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

div.download-solution-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}

div.download-solution-wrapper > div {
    width: 100%;
    display: flex;
    justify-content: center;
}

div.download-solution-wrapper > div > a {
    cursor: pointer;
}

div.solution textarea {
    width: 60%;
    height: 60px;
    display: inline-block;
}

table.value-wrapper th {
    width: 50%;
}

table.value-wrapper th {
    text-align: right;
    padding-right: 10px;
}

table.value-wrapper td {
    text-align: left;
    padding-left: 10px;
}

div.button-wrapper {
    display: flex;
    justify-content: space-around;
    margin: auto;


}

div.button-wrapper > * {
    margin-left: 10px;
    margin-right: 10px;
}

button:disabled {
  visibility: hidden;
}
