body {
    background-color: #e1e1e1;
    box-sizing: border-box;
    padding: 10px;
}


.container {
    
}


pre {
    border: black 2px solid;
    border-radius: 5px;
    padding: 5px;
    width: 90%;
    min-width: 720px;
    min-height: 264px;
    overflow: auto;
    height: 720px;
    max-height: fit-content;
}

#id_radio_input {
    display: flex;
}

#id_radio_input >div {
    margin-right: 10px;
}

.choices {
    display: flex;   
}

.choices > div {
    border: black 1px solid;
    border-radius: 5px;
    padding: 5px;
    margin-right: 10px ;
    cursor: pointer;
}

.choices > div:hover {
    box-shadow: 5px 5px 5px #9D9D9D;
    background-color: #9D9D9d;
}

.selected {
    background-color: #9D9DFF;
}

.hidden {
    display: none;
}