/* Red Collapsible RDU Alert Banner */
.alert-banner {
  display: flex;
  align-items: center;      /* centers emoji relative to text block */
  background-color: #be044537;
  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%;
}
.alert-banner .emoji {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;   /* increase this for larger icon */
  color: red;
}
.alert-banner .text {
  flex: 1;                  /* text takes remaining space */
}

.alert-collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #be04450c;
  border: 1px solid #3333331a;
  border-top: none;
  padding: 0 20px;
  border-radius: 0 0 5px 5px;
  font-size: 0.9em;
  margin-bottom: 10px; /* Adds spacing below the section */
}
.alert-collapsible-content.open {
  max-height: none;
}
.alert-collapsible-content p {
  font-size: 1.0em;
  line-height: 1.3;
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}
.alert-collapsible-content ul {
  margin-top: 1rem;
  padding-left: 0.4rem;
  line-height: 1;
}
.alert-collapsible-content li {
  margin-bottom: 0.1rem;
  line-height: 1;
}
.alert-collapsible-content ul ul {
  margin-top: 0.1rem;
  line-height: 1;
}
.alert-collapsible-content ul ul li {
  margin-bottom: 0.1rem;
  line-height: 1;
}
.alert-collapsible-content li b {
  color: #0077cc;
  line-height: 1;
}