/* Live menu hint banner (dashboard → Edit menu content) */

.dashboard-live-menu-hint {
  position: relative;
  z-index: var(--ttms-z-dashboard-edit, 10001);
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.97) 0%, rgba(15, 23, 42, 0.98) 100%);
  border-bottom: 1px solid rgba(129, 140, 248, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  color: #f1f5f9;
}

.dashboard-live-menu-hint__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.dashboard-live-menu-hint__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  flex: 1 1 auto;
}

.dashboard-live-menu-hint__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 4px;
  background: rgba(129, 140, 248, 0.25);
  vertical-align: middle;
  margin: 0 0.1rem;
}

.dashboard-live-menu-hint__icon .fa {
  font-size: 0.75rem;
}

.dashboard-live-menu-hint__close {
  flex-shrink: 0;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dashboard-live-menu-hint__close:hover,
.dashboard-live-menu-hint__close:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
