/* src/components/ChoiceSelection/ChoiceSelection.css */

.option-divider {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.choice-header {
    font-size: 13px;
    margin-left: 15px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 15px;
    cursor: pointer;
    border-bottom: 1px solid blue;
    min-width: 8rem;
}

.choices.hidden {
    display: none;
}

.choices {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 8rem;
    border-bottom: 1px solid rgb(218, 220, 224);
    margin-left: 15px;
    margin-right: 15px;
    padding-top: 4px;
    padding-bottom: 4px;
    background-color: rgb(241, 243, 244);
}

.choice-text:hover {
    margin: 0;
    padding-left: 8px;
    border-left: 2px solid blue;
    cursor: pointer;
}

.header-text,
.choice-text {
    margin-left: 8px;
}

.chosen-container.shown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid blue;
    margin-left: 15px;
    margin-right: 15px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    font-size: 13px;
}

.chosen-container.hidden {
    display: none;
}

.result-container.shown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid blue;
    margin-left: 15px;
    margin-right: 15px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    font-size: 13px;
}

.result-container.hidden {
    display: none;
}

.fundamental-choice-container {
    margin-bottom: 40px;
}

#delete-choice:hover {
    color: blue;
    cursor: pointer;
}