/* * 08_feedback.css 
 * Contains: All styles for the Feedback Page
 */

/* ---------------------------------- */
/* 16. NEW: Feedback Page Styles    */
/* ---------------------------------- */

/* Center the page title */
.container h2 {
    text-align: center;
    color: var(--primary-color);
    margin-top: 0;
}

/* Style the feedback list container */
.feedback-list-container {
    max-width: 800px;
    margin: 40px auto 20px auto;
}

.feedback-list-container h3 {
    text-align: center;
    color: var(--text-color-secondary);
    font-weight: 400;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Style for each feedback entry */
.feedback-entry {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.feedback-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.feedback-date {
    font-size: 0.8rem;
    color: var(--text-color-secondary);
}

.feedback-body {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

#feedbackLoading {
    text-align: center;
    color: var(--text-color-secondary);
}
