/* Netfontes - feedback e confirmação de ações de comentários */

.page-comments .comment-feedback,
.page-comment-remove .comment-remove-message {
    margin: 18px 0;
    padding: 12px 14px;
    border: 1px solid #d7e0e4;
    border-radius: 7px;
    background: #f7f9fa;
    line-height: 1.45;
    text-align: left;
}

.page-comments .comment-feedback.is-success {
    border-color: #b9dfc7;
    background: #eef8f1;
}

.page-comments .comment-feedback.is-error,
.page-comment-remove .comment-remove-message.is-error {
    border-color: #ecc8c5;
    background: #fff4f3;
}

.page-comment-remove .comment-remove-card {
    max-width: 620px;
    margin: 28px 0;
    padding: 22px;
    border: 1px solid #d7e0e4;
    border-radius: 8px;
    background: #f8fafb;
    box-sizing: border-box;
    text-align: left;
}

.page-comment-remove .comment-remove-card p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.5;
}

.page-comment-remove .comment-remove-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-comment-remove .comment-remove-danger,
.page-comment-remove .comment-remove-secondary {
    display: inline-block;
    padding: 9px 14px;
    border-radius: 5px;
    box-sizing: border-box;
    font: inherit;
    text-decoration: none;
    cursor: pointer;
}

.page-comment-remove .comment-remove-danger {
    border: 1px solid #9d2525;
    background: #fff1f1;
    color: #7d1717;
}

.page-comment-remove .comment-remove-danger:hover,
.page-comment-remove .comment-remove-danger:focus {
    background: #f7dddd;
}

.page-comment-remove .comment-remove-secondary {
    border: 1px solid #aeb9bf;
    background: #fff;
    color: #263238;
}

.page-comment-remove .comment-remove-secondary:hover,
.page-comment-remove .comment-remove-secondary:focus {
    background: #eef2f4;
}

@media only screen and (max-width: 640px) {
    .page-comment-remove .comment-remove-card {
        max-width: 100%;
        margin: 18px 0;
        padding: 16px;
    }

    .page-comment-remove .comment-remove-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .page-comment-remove .comment-remove-danger,
    .page-comment-remove .comment-remove-secondary {
        width: 100%;
        text-align: center;
    }
}
