.question {
    min-height: 100px;
    width: 100%;
    background-color: rgba(240, 255, 223, 0.658);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.question_header {
    min-height: 50px;
    background-color: rgba(252, 233, 170, 0.74);
    padding-left: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    border-radius: 20px 20px 0px 0px;
}

.header_label {
    max-width: 60%;
}

.date_label {
    max-width: 30%;
}

.question_answers {
    padding-left: 25px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.question_radiobutton {
    margin: 4px 0px;
    min-height: 30px;
    display: flex;
    align-items: center;
    max-width: 80%;
}

.answer_text {
    max-width: 60%;
}

.result_label {
    max-width: 34%;
    margin-left: 5%;
}

.question_submit {
    padding-left: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 30px;
    background-color: rgba(252, 233, 170, 0.74);
    border-radius: 0px 0px 20px 20px;
}

.question_submit_btn {
    border: none;
    background-color: rgb(91, 135, 3);
    color: #FFFFFF;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(14, 131, 43, 0.3);
    transition: .2s;
}

.question_submit_btn:hover {
    background-color: rgb(156, 194, 79);
}

.text {
    padding-left: 0px !important;
}