.inline-action-form {
    margin: 0;
    display: inline-flex;
}

.danger-text-button {
    color: #b42318;
}

.report-page {
    max-width: 760px;
}

.report-target-card,
.report-form-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 28px;
    margin-bottom: 24px;
}

.report-target-card h2 {
    margin: 0 0 4px;
    color: var(--blue);
}

.report-target-card p {
    margin: 0 0 16px;
    color: var(--muted);
}

.report-target-card blockquote {
    margin: 0;
    padding: 18px;
    border-left: 4px solid var(--orange);
    background: #fff8ef;
    color: #333;
    line-height: 1.6;
}

.report-form-card {
    display: grid;
    gap: 22px;
}

.report-form-card label {
    font-size: 18px;
}

.report-form-card select,
.report-form-card textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,.10);
    background: #fff;
    padding: 0 20px;
}

.report-form-card select {
    min-height: 60px;
}

.report-form-card textarea {
    min-height: 140px;
    padding: 18px 20px;
    resize: vertical;
}

.report-form-card small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.public-profile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.block-profile-form .icon-button {
    border: 1px solid #ffd0cb;
    background: #fff5f3;
    border-radius: 10px;
    padding: 10px 16px;
}

.post-card-controls,
.comment-actions {
    flex-wrap: wrap;
}

@media (max-width: 760px) {
    .public-profile-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .public-profile-actions .btn,
    .public-profile-actions .follow-form,
    .public-profile-actions .follow-button,
    .public-profile-actions .block-form,
    .public-profile-actions .block-form button {
        width: 100%;
    }

    .report-target-card,
    .report-form-card {
        padding: 22px;
    }
}
