#content {
    margin: 10px 5% 10px;
    width: 90%;
}

#text {
    border: 1px solid var(--box--border);
    border-radius: var(--box--radius);
    background-color: var(--box--background);
    margin: 10px 0px;
    padding: 0px 10px;
}

#ideas-box {
    border: 1px solid var(--box--border);
    border-radius: var(--box--radius);
    background-color: var(--box--background);
    margin: 10px 0px;
    padding: 0px 10px;
    max-height: 70vh;
    overflow-y: auto;
}

.question-title-box {
    position: relative;
    background-color: var(--article--box--color);
    margin: 10px 0px;
    border-top: 3px solid var(--box--border);
    display: flex;
    padding: 3px 5px;
    justify-content: space-between;
    align-items: center;
}

.question-title {
    font-size: var(--font--medium);
}

.answer-text {
    padding: 5px 0px;
}

.question-nature-box {
    margin: 10px 0px;
    display: flex;
    padding-top: 5px;
    justify-content: space-between;
}

.answer-title-box {
    margin-top: 10px;
    display: flex;
    padding: 5px 10px 0px 10px;
    border-top: 1px solid var(--box--light--border);
    justify-content: space-between;
}

.question-title , .label {
    font-weight: 700;
}

.question-date {
    font-style: italic;
}

.question-content {
    white-space: pre-wrap;
}


#ideas-commands-model {
    display: none;
}

#ideas-cmds {
    justify-content: space-between;
    display: flex;
}

.ideas-commands-model {
    position: absolute;
    right: 0px;
    top: 2px;
    height: 24px;
    white-space: normal;
    display: flex;
}

.idea-author-box {
    position: absolute;
    right: 80px;
    top: 2px;
    border: 2px solid var(--box--border);
    border-radius: var(--box--radius);
    background-color: var(--box--background);
    padding: 5px;
    box-shadow: var(--small--shadow);
    z-index: 1080;
}

#idea-author-commands {
    display: flex;
    justify-content: flex-end;
}

#idea-author-title {
    text-align: center;
    font-size: var(--font--medium);
    font-weight: 700;
}

.ideas-control-command {
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 2px;
    border: 2px solid var(--box--border);
    box-shadow: var(--tiny--shadow);
    background-color: var(--box--background);
    margin-right: 5px;
    background-size: 16px;
    cursor: pointer;
}

.ideas-control-command:hover {
    background-color: var(--hover--selected);
}

.delete {
    background-image: url("../pictures/icons/btrash.png");
}

.edit {
    background-image: url("../pictures/icons/edit.png");
}

.info {
    background-image: url("../pictures/icons/info.png");
}

.add {
    background-image: url("../pictures/icons/plus.png");
    box-shadow: var(--small--shadow);

}

.close {
    background-image: url("../pictures/icons/bclose.png");
}

.filter {
    background-image: url("../pictures/icons/filter.png");
    box-shadow: var(--small--shadow);
}


