.pending-match-banner {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: none;
  background: #fff7e6;
  color: #111;
  border-radius: 0;
  padding: 7px 18px;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.pending-match-banner[hidden] { display: none; }
.pending-match-banner-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8a327;
  animation: pending-match-pulse-dot 1.2s ease-in-out infinite;
}
@keyframes pending-match-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.pending-match-banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 12.5px;
  font-weight: 700;
}
.pending-match-banner-sub { font-size: 11px; font-weight: 500; color: #8a6d1f; }
.pending-match-banner svg { flex-shrink: 0; color: #8a6d1f; }
