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

.warning-collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #ffe10012;
  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 */
}
.warning-collapsible-content.open {
  max-height: none;
}
.warning-collapsible-content p {
  font-size: 1.0em;
  line-height: 1.3;
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}
.warning-collapsible-content b {
  color: #6300d3;
  line-height: 1.3;
}
.warning-collapsible-content ul {
  margin-top: 1rem;
  padding-left: 0.4rem;
  line-height: 1;
}
.warning-collapsible-content li {
  margin-bottom: 0.1rem;
  line-height: 1;
}
.warning-collapsible-content ul ul {
  margin-top: 0.1rem;
  line-height: 1;
}
.warning-collapsible-content ul ul li {
  margin-bottom: 0.1rem;
  line-height: 1;
}
.warning-collapsible-content li b {
  color: #0077cc;
  line-height: 1;
}


/* STATIC BANNER */
.warning-static-banner {
  background-color: #ffe10042;
  padding: 4px 8px;           /* Reduced vertical padding */
  border: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
  font-size: 0.9em;
  border-left: 5px solid #ffa500;
  border-radius: 0; /* Make square shaped */
}
.warning-static-banner .emoji {
  font-size: 1.5rem; 
  margin-right: 10px;
  color: #ffa500;
}
.warning-static-content {
  background-color: #ffe10008;
  border-left: 5px solid #ffa500;
  padding: 10px 12px;
  padding-bottom: 1px;
  margin-top: 0;
  font-size: 1em;
}
.warning-static-content ul,
.warning-static-content ol {
  margin: 0;                   /* Remove extra spacing */
  padding-left: 20px;          /* Optional: indent for list items */
  font-size: 0.9em;
}
.warning-static-content p {
  margin: 0.5em;
  font-size: 0.9em;
}
.warning-static-content li {
  margin: 0; /* override even the slight spacing */
  padding: 0;
}
.warning-static-content b {
  color: #6300d3;
}
