/*
 * DREAMMAKER HIDE BACK TO MARKETS V1
 *
 * Hides only the floating Back to Markets control.
 * No JavaScript.
 * No MutationObserver.
 * No page-section changes.
 */

#dm-beta-back-markets {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

/*
 * Older versions may apply this class to the original page-level
 * Back to Markets button. Restore that original control.
 */
.dm-original-back-to-markets-hidden {
  display: revert !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
