/* feedback-page.css — Feedback page */

/* Single-column width comes from the base .dlg-page scheme. */

.fb-empty {
    color: var(--dlg-color-text-secondary);
    padding: 20px 0;
}

/* ── Feedback card ─────────────────────────────────────────── */

.fb-card {
    border: 1px solid var(--dlg-color-border);
    border-radius: var(--dlg-radius);
    background: var(--dlg-color-bg);
    margin-bottom: 12px;
    overflow: hidden;
}

.fb-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: var(--dlg-color-bg-secondary);
    border-bottom: 1px solid var(--dlg-color-border);
    gap: 12px;
}

.fb-card__id {
    font-weight: 600;
    font-size: 13px;
    color: var(--dlg-color-primary);
    text-decoration: none;
}

.fb-card__id:hover {
    text-decoration: underline;
}

.fb-card__profile {
    font-size: 12px;
    color: var(--dlg-color-text-secondary);
}

.fb-card__body {
    padding: 12px 16px;
}

/* ── Question ──────────────────────────────────────────────── */

.fb-question {
    font-weight: 500;
    margin-bottom: 8px;
}

/* ── Content preview ───────────────────────────────────────── */

.fb-content {
    font-size: 13px;
    color: var(--dlg-color-text-secondary);
    line-height: 20px;
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 120px;
    overflow: hidden;
    margin-bottom: 10px;
}

/* ── Feedback entries ──────────────────────────────────────── */

.fb-entries {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.fb-entry {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 13px;
    line-height: 20px;
}

.fb-entry__icon {
    flex-shrink: 0;
    font-size: 14px;
}

.fb-entry__icon--positive {
    color: #16a34a;
}

.fb-entry__icon--negative {
    color: #dc2626;
}

.fb-entry__time {
    color: var(--dlg-color-text-secondary);
    flex-shrink: 0;
    font-size: 12px;
}

.fb-entry__comment {
    flex: 1;
    min-width: 0;
}

/* ── Actions row ───────────────────────────────────────────── */

.fb-actions {
    display: flex;
    gap: 12px;
    font-size: 13px;
}

.fb-actions a {
    color: var(--dlg-color-primary);
    text-decoration: none;
}

.fb-actions a:hover {
    text-decoration: underline;
}
