.comment-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    background-color: light-dark(#C0C0C0, #404040);
}

.comment-box .comment-box-header {
    padding: 0;
    margin: 0;
    border: 1px solid light-dark(black, white);
}

.comment-box .comment-box-header h4 {
    padding: 0 5px;
    margin: 0;
}

.comment-box q {
    align-self: center;
}

.comment-box .btnPanel {
    display: flex;
    flex-direction: row;
}
.comment-box .btnPanel button {
    width: 50%;
    background-color: light-dark(#999999, #666666);
    color: light-dark(#333333, #CCCCCC);
}

.comment-box .btnPanel button:hover,
.comment-box .btnPanel button:focus {
    background-color: light-dark(#000000, #FFFFFF);
    color: light-dark(#FFFFFF, #000000);
}

.comment-box .btnPanel button[aria-disabled="true"] {
    background-color: light-dark(#CCCCCC, #333333);
    color: light-dark(#666666, #999999);
}

.comment-box .btnPanel button[aria-disabled="true"]:hover,
.comment-box .btnPanel button[aria-disabled="true"]:focus {
    background-color: #666666;
    color: #CCCCCC;
    cursor: not-allowed;
}

.evt-form-field {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0.5rem 0;
}

.evt-form-field label {
    display: flex;
    width: 15%;
    margin: 0 1rem;
    align-self: center;
}

.evt-form-field input[type="text"],
.evt-form-field input[type="email"],
.evt-form-field input[type="tel"],
.evt-form-field input[type="url"],
.evt-form-field input[type="datetime-local"],
.evt-form-field input[type="number"],
.evt-form-field textarea {
    width: 85%;
}

fieldset.evt-form-field {
    width: 99%;
    margin: 0.5rem;
}

fieldset.evt-form-field label {
    width: auto;
}

@media screen and (max-width: 768px) {
    .evt-form-field label {
        flex-direction: column;
    }
}