/* Surgeon Poker fork overrides. Loaded after table.css.
   Phase-1 (alpha): hide the D&D dungeon side-game entry points, since the
   dungeon backend was removed. The full surgeon re-skin of the roster/lobby
   is a later pass (see SURGEON-POKER.md). */

/* Dungeon launch controls (money-dropdown button, recruit "Start Dungeon",
   and the blind-access buttons) */
[data-enter-dungeon],
.purse__btn--dungeon,
[data-dact="join"],
#srEnterDungeon,
#srSpectateDungeon,
.dungeon__recruit [data-dact="join"] {
  display: none !important;
}

/* The whole dungeon screen, in case a stale deep-link tries to show it */
.screen[data-show-on="dungeon"] {
  display: none !important;
}

/* Inline "Create New Player" form (replaces window.prompt) */
.roster-pick--newform { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
.roster-newname {
  width: 100%; padding: 8px 10px; font-size: 16px;   /* 16px stops iOS zoom-on-focus */
  border-radius: 8px; border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.35); color: inherit;
}
.roster-newname:focus { outline: none; border-color: #46c88a; }
.roster-newform__actions { display: flex; gap: 6px; justify-content: center; }
