/* Feedback Form Styles */
.wcf-feedback-form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wcf-feedback-form h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.wcf-feedback-form .form-group {
    margin-bottom: 1rem;
}

.wcf-feedback-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.wcf-feedback-form input[type="text"],
.wcf-feedback-form input[type="email"],
.wcf-feedback-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.wcf-feedback-form textarea {
    min-height: 150px;
    resize: vertical;
}

.wcf-feedback-form button[type="submit"] {
    background: #0073aa;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.wcf-feedback-form button[type="submit"]:hover {
    background: #005177;
}

.wcf-feedback-form .feedback-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
}

.wcf-feedback-form .feedback-message.success {
    background: #e7f5ea;
    color: #0a6b1d;
    border: 1px solid #c3e6cb;
}

.wcf-feedback-form .feedback-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Status Badge Styles for Admin Table */
.wp-list-table .status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.wp-list-table .status-feedback_pending {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.wp-list-table .status-feedback_processed {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wp-list-table .status-1 {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.wp-list-table .status-0 {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.wp-list-table .status-spam {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

.wp-list-table .status-trash {
    background-color: #e2e3e5;
    color: #41464b;
    border: 1px solid #d3d6d8;
}
