/* issues banner for instrument pages styling */
.issues-banner {
  display: flex;
  align-items: center;      /* centers emoji relative to text block */
  background-color: #ff8c4266;
  padding: 4px 8px;
  border-bottom: 1px solid #e0e0e0;
  font-family: Lato; 
  color: #474646;
  font-weight: bold;
  gap: 8px;                 /* space between emoji and text */
  font-size: 0.9em;
  line-height: 1.1;
  border-radius: 6px; /* round edges */
  width: 100%;
}
.issues-banner .emoji {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;   /* increase this for larger icon */
  color: #f97316;
}
.issues-banner .text {
  flex: 1;                  /* text takes remaining space */
}

/* Pill base */
.pill {
  display: inline-block;
  padding: 0.25em 0.7em;
  font-size: 0.75em;
  font-weight: 600;
  border-radius: 999px;
  line-height: 1.4;
  white-space: nowrap;
}
/* Fix date pill */
.fix-date {
  background: #c084fc66;
  color: #6a6a6a;
}