.action-tooltip {
  position: fixed;
  inset: auto;
  z-index: 2147483647;
  width: max-content;
  max-width: min(360px, calc(100vw - 16px));
  max-height: calc(100vh - 16px);
  overflow: auto;
  margin: 0;
  padding: 11px 14px;
  border: 1px solid #708078;
  border-radius: 9px;
  background: #25342c;
  color: #f3f7f4;
  box-shadow: 0 6px 24px #0006;
  font: 400 14px/1.5 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;
  letter-spacing: normal;
  cursor: default;
}
.action-tooltip[hidden] { display: none; }
