/* Marquee Bar Pro - minimal & compatible */
#mb-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  z-index: 999999;
  background: var(--mb-bg, #111);
  color: var(--mb-color, #fff);
  display: flex;
  align-items: center;
  box-sizing: border-box;
  font-size: 15px;
  line-height: 1;
  padding: 6px 12px;
  direction: rtl;
  transition: background .2s ease;
}

/* inner viewport */
.mb-inner {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

/* track (container of one or more sets) */
.mb-track {
  display: inline-flex;
  align-items: center;
  will-change: transform;
  transform: translate3d(0,0,0);
}

/* individual message */
.mb-item {
  display: inline-block;
  white-space: nowrap;
  font-weight: 500;
  font-size: 16px;
  -webkit-font-smoothing:antialiased;
  margin: 0;
}

/* accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mb-track { animation: none !important; transform: none !important; transition: none !important; }
}

/* optional push-down helper (added dynamically by JS when user enabled push_down) */
body.mbp-pushdown {
  /* the JS will compute exact padding-top equal to bar height */
}
