/* Sektor forum tweaks — tame Flarum's hover pane and give a clear back button */

/* stop the discussion-list panel from sliding out when the mouse hits the left edge */
.App-pane { display: none !important; }

/* clear floating "back to discussions" button (shown by sektor-forum.js on thread pages) */
#sk-forum-back {
  position: fixed; left: 20px; bottom: 20px; z-index: 2147482000;
  display: none; align-items: center; gap: 6px;
  background: #7C5CFF; color: #fff !important;
  padding: 11px 18px; border-radius: 999px;
  font: 600 14px/1 "Inter", system-ui, sans-serif; text-decoration: none;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  transition: background 0.15s, transform 0.15s;
}
#sk-forum-back:hover { background: #6b4ff0; transform: translateY(-1px); }
