.wb-row {
    display: grid;
    grid-template-columns: 120px 120px; /* fixed columns */
    justify-content: center;
    column-gap: 20px;
    margin: 4px 0;
}

.wb-center {
    display: flex;
    justify-content: center;
    margin: 6px 0;
}

.tile-wb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px;
    background: transparent;
}

.input-wb {
    width: 80px;
    min-width: 80px;
    max-width: 80px;

    height: 40px;
    font-size: 13px;
    text-align: center;

    padding: 0;
    margin: 0;

    background: transparent;
    border: none;
    border-bottom: 1px solid #888;
    box-sizing: border-box;
}

.label-wb {
    font-size: 12px;
    margin-top: 3px;
    text-align: center;
}

.logo-container-wb {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.logo-container-wb img {
    max-width: 180px;
}

/* remove number spinners */
.input-wb::-webkit-outer-spin-button,
.input-wb::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-wb[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}
