/* =========================================================
   Keyboard Help — FINAL PORTAL VERSION
   Aman dari parent overflow / drawer kepotong
   ========================================================= */

.ss-kbdhelp{
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
}

/* Button */
.ss-kbdhelp-btn{
  width: 30px;
  height: 30px;
  padding: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;
  line-height: 1;
  cursor: pointer;

  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 8px;
  color: #111111;
}

/* Tooltip: dipindah ke body oleh JS */
.ss-kbdhelp-tip{
  position: fixed;
  top: 0;
  left: 0;

  min-width: 280px;
  max-width: min(360px, calc(100vw - 24px));
  padding: 14px 16px;

  background: #ffffff;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);

  z-index: 2147483647;
  box-sizing: border-box;

  display: none;
}

/* Visible state */
.ss-kbdhelp-tip.is-visible{
  display: block;
}

/* Tooltip content */
.ss-kbdhelp-tip pre{
  margin: 0;
  white-space: pre;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.55;
  color: #111111;
  background: none;
  border: 0;
  padding: 0;
}