/* ── Overall feedback page background ───────────────────── */
body.path-mod-feedback {
    background: #FCF9F8 !important;
}

/* ── Page header / activity title ───────────────────────── */
body.path-mod-feedback #page-header,
body.path-mod-feedback .page-header-headings h1 {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    border: none;
    background: none;
    padding: 32px 0 8px;
}

/* ── Main content area card ──────────────────────────────── */
body.path-mod-feedback #region-main {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    margin-top: 24px;
}

/* ── Each question item ──────────────────────────────────── */
body.path-mod-feedback .feedback_itemlist {
    border: none;
    border-bottom: 1px solid #f3f4f6;
    padding: 20px 0;
    margin: 0;
}
body.path-mod-feedback .feedback_itemlist:last-child {
    border-bottom: none;
}

/* ── Question label text ─────────────────────────────────── */
body.path-mod-feedback .feedback_itemlist .feedback-item-label,
body.path-mod-feedback .feedback_itemlist label {
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 10px;
    display: block;
}

/* ── Text inputs & textareas ─────────────────────────────── */
body.path-mod-feedback input[type="text"],
body.path-mod-feedback textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: #111827;
    background: #f9fafb;
    font-family: inherit;
    transition: border-color 0.15s, background 0.15s;
    outline: none;
    box-sizing: border-box;
}
body.path-mod-feedback input[type="text"]:focus,
body.path-mod-feedback textarea:focus {
    border-color: #3495FE;
    background: #fff;
}

/* ── Radio & checkbox options ────────────────────────────── */
body.path-mod-feedback .feedback_itemlist .radio label,
body.path-mod-feedback .feedback_itemlist .checkbox label {
    font-size: 14px;
    color: #374151;
    cursor: pointer;
}
body.path-mod-feedback input[type="radio"],
body.path-mod-feedback input[type="checkbox"] {
    accent-color: #3495FE;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    cursor: pointer;
}

/* ── Submit button ───────────────────────────────────────── */
body.path-mod-feedback .feedback_submit_btn,
body.path-mod-feedback input[type="submit"],
body.path-mod-feedback button[type="submit"] {
    background: linear-gradient(138.34deg, #3495FE -0.45%, #F8D194 99%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 11px 32px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.15s;
    margin-top: 16px;
}
body.path-mod-feedback .feedback_submit_btn:hover,
body.path-mod-feedback input[type="submit"]:hover,
body.path-mod-feedback button[type="submit"]:hover {
    opacity: 0.88;
}

/* ── "Already submitted" notice ──────────────────────────── */
body.path-mod-feedback .feedback_is_already_submitted {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 16px 20px;
    color: #15803d;
    font-size: 14px;
    margin-bottom: 20px;
}

/* ── Navigation breadcrumb cleanup ───────────────────────── */
body.path-mod-feedback .breadcrumb {
    background: none;
    padding: 0;
    font-size: 13px;
    color: #6b7280;
}