label[disabled="TRUE"] {
    display: none;
}

.radioOptions {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.radioOptions input[type="radio"] {
    display: none;
}

.radioSelector {
    display: inline-block;
    width: 10rem;
    height: 2rem;
    border: 1px solid black;
    background-color: lightgray;
    color: black;
    cursor: pointer;
    font-size: x-large;
    text-align: center;
    align-content: center;
    border-radius: 1rem;
    padding: 0.5rem;
    overflow-x: hidden;
    text-wrap: nowrap;
}

input[type="radio"]:checked+.radioSelector {
    display: inline-block;
    width: 10rem;
    height: 2rem;
    border: 1px solid black;
    background-color: lightgreen;
    cursor: pointer;
    font-size: x-large;
    text-align: center;
    border-radius: 1rem;
    padding: 0.5rem;
}

input[type="text"] {
    display: inline-block;
    width: 20rem;
    height: 1.5rem;
    border: 1px solid black;
    font-size: large;
    text-align: center;
    border-radius: 1rem;
    padding: 0.5rem;
}

input[list] {
    display: inline-block;
    width: 20rem;
    height: 1.5rem;
    border: 1px solid black;
    font-size: large;
    text-align: center;
    border-radius: 1rem;
    padding: 0.5rem;
}

.formData {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.formDataEntry {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    font-size: x-large;
}

.formDataLabel {
    width: 6rem;
}