input[type="radio"], input[type="checkbox"] {
    display: none;
}

input:checked + label span.button {
    background-color: black;
    color: white;
    font-weight: bold;
}

form {
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.radio {
    padding: 5px 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
}

.textbox {
    background-color: #f2f2f2;
    font-family: Ubuntu Mono;
    width: 100%;
    padding: 5px 10px;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    resize: none;
}

.no-padding .textbox {
    background-color: #e6e6e6;
}

.textbox:focus {
    outline: none;
}

button {
    font-family: Gotham;
    border: none;
    color: black;
    background-color: #f2f2f2;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.25s ease-in-out;
}

button:hover {
    background-color: #999999;
    color: white;
}

button:disabled {
    cursor: not-allowed;
    color: #757575;
}

button:disabled:hover {
    background-color: #f2f2f2;
    color: #757575;
}

.no-padding button {
    background-color: white;
}

.no-padding button:hover {
    background-color: #999999;
    color: white;
}

.no-padding button:disabled:hover {
    background-color: white;
    color: #757575;
}

button:focus {
    outline: none;
}