/* ==================================================
   bbPress — FINAL STABLE THEME INTEGRATION
   Works with light/dark mode + custom variables
================================================== */

/* Root wrapper */
#bbpress-forums {
  font-size: 15px;
  color: var(--text);
}

/* Remove legacy list/table styling */
#bbpress-forums ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ==================================================
   Forum / Topic / Reply Cards
================================================== */

#bbpress-forums li.bbp-forum,
#bbpress-forums li.bbp-topic,
#bbpress-forums li.bbp-reply {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 20px 22px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

/* Dark mode */
html.dark #bbpress-forums li.bbp-forum,
html.dark #bbpress-forums li.bbp-topic,
html.dark #bbpress-forums li.bbp-reply {
  background: var(--bg-alt);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
}

/* ==================================================
   bbp-body (MAIN WHITE BACKGROUND FIX)
================================================== */

html.dark #bbpress-forums .bbp-body {
  background: var(--bg-alt) !important;
}

/* Neutralize legacy table cells ONLY */
html.dark #bbpress-forums .bbp-body table,
html.dark #bbpress-forums .bbp-body tr,
html.dark #bbpress-forums .bbp-body td {
  background: transparent !important;
}

/* ==================================================
   Headers / Footers
================================================== */

#bbpress-forums .bbp-header,
#bbpress-forums .bbp-footer {
  background: transparent;
  border: none;
  padding: 8px 0;
  color: var(--muted);
}

/* ==================================================
   Titles & Links
================================================== */

#bbpress-forums .bbp-forum-title,
#bbpress-forums .bbp-topic-permalink {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

#bbpress-forums .bbp-forum-title:hover,
#bbpress-forums .bbp-topic-permalink:hover {
  color: var(--accent);
}

/* ==================================================
   Meta Text
================================================== */

#bbpress-forums .bbp-topic-meta,
#bbpress-forums .bbp-reply-post-date,
#bbpress-forums .bbp-forum-content {
  font-size: 13px;
  color: var(--muted);
}

/* ==================================================
   Reply Content
================================================== */

#bbpress-forums .bbp-reply-content {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}

/* ==================================================
   Forms
================================================== */

#bbpress-forums fieldset.bbp-form {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 24px;
  margin-top: 24px;
  border: 1px solid rgba(0,0,0,.08);
}

html.dark #bbpress-forums fieldset.bbp-form {
  border-color: rgba(255,255,255,.1);
}

/* Inputs */
#bbpress-forums input[type="text"],
#bbpress-forums textarea,
#bbpress-forums select {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 12px;
  padding: 10px 12px;
}

html.dark #bbpress-forums input,
html.dark #bbpress-forums textarea,
html.dark #bbpress-forums select {
  border-color: rgba(255,255,255,.25);
}

/* ==================================================
   Buttons
================================================== */

#bbpress-forums input[type="submit"],
#bbpress-forums button {
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  padding: 10px 18px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

#bbpress-forums input[type="submit"]:hover,
#bbpress-forums button:hover {
  opacity: .9;
}