
/* 反馈统计卡片样式 */
.feedback-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-card h3 {
    margin: 0;
    font-size: 28px;
    color: #333;
}

.stat-card p {
    margin: 5px 0 0;
    color: #666;
}

.stat-card.pending { border-top: 4px solid #ffb900; }
.stat-card.resolved { border-top: 4px solid #46b450; }
.stat-card.total { border-top: 4px solid #0073aa; }

/* 状态标签样式 */
.status-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.status-badge.pending { background: #fff8e5; color: #dba617; }
.status-badge.resolved { background: #edfaef; color: #46b450; }

/* 操作按钮样式 */
.action-button {
    margin-right: 5px;
    transition: all 0.3s ease;
}

.action-button.resolve { background: #46b450; color: white; }
.action-button.delete { background: #dc3232; color: white; }

.action-button:hover {
    opacity: 0.8;
}
