.feedback-panel {
    background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
    border: 1px solid #dce6f0;
    border-radius: 12px;
    padding: 18px;
    margin: 24px 0 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.feedback-divider {
    border: 0;
    border-top: 1px solid #d1d5db;
    margin: 10px 0 14px;
}
.feedback-panel h2 {
    margin-top: 0;
    font-size: 20px;
    color: #1f2937;
}
.feedback-panel textarea {
    width: 100%;
    min-height: 96px;
    padding: 10px;
    border: 1px solid #c7d2e0;
    border-radius: 8px;
    box-sizing: border-box;
    resize: vertical;
    font-size: 14px;
}
.feedback-actions {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.feedback-actions button {
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    background: #2563eb;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}
.feedback-actions button.secondary {
    background: #6b7280;
}
.feedback-list {
    margin-top: 14px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}
.feedback-item {
    border-top: 1px solid #eef2f7;
    padding: 10px 0;
}
.feedback-item:first-child {
    border-top: none;
    padding-top: 0;
}
.feedback-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}
.feedback-item-top strong {
    font-size: 14px;
    color: #111827;
}
.feedback-meta {
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 6px;
}
.feedback-item-body {
    color: #374151;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.feedback-delete-btn {
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    background: #ef4444;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
}
.feedback-empty {
    color: #888;
    font-size: 14px;
}
.feedback-widget-host {
    margin-top: 20px;
    clear: both;
}
