/* Responsive mobile banners */
.banner-mobile { display: none !important; }
@media (max-width: 600px) {
  .banner-desktop { display: none !important; }
  .banner-mobile {
    display: flex !important;
    height: 36px;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    color: #fff;
    background: linear-gradient(90deg, #0a2e6c 0%, #1e90ff 100%);
    border-top: 2px solid #1e90ff;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 0 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .scarlet-banner.banner-mobile {
    background: linear-gradient(90deg, #a8001c 0%, #ff3b3f 100%);
    border-top: 2px solid #ff3b3f;
  }
  .banner-mobile a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .banner-mobile span {
    width: 100%;
    text-align: center;
  }
}
/*
 * Sapphire Signal + Scarlet Consulting Fixed Footer Banner Styles
 */
#sapphire-scarlet-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  /* Above the chat flyout and the UAEL modal layer so the close buttons are
     always clickable. */
  z-index: 2147483640;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  pointer-events: none;
}
.sapphire-banner, .scarlet-banner {
  min-height: 0;
  height: 36px;
  max-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  position: relative;
  pointer-events: auto;
  box-shadow: 0 -2px 16px rgba(0,0,32,0.12);
  padding: 0 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.sapphire-banner {
  background: linear-gradient(90deg, #0a2e6c 0%, #1e90ff 100%);
  border-top: 2px solid #1e90ff;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.sapphire-banner a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 0.5em;
}
.scarlet-banner {
  background: linear-gradient(90deg, #a8001c 0%, #ff3b3f 100%);
  border-top: 2px solid #ff3b3f;
  font-weight: 600;
  letter-spacing: 0.02em;
  flex-direction: row;
  text-align: left;
}
.scarlet-banner a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 0.5em;
}
.sapphire-banner .footer-close, .scarlet-banner .footer-close {
  position: absolute;
  top: 4px;
  right: 8px;
  background: rgba(0,0,0,0.18);
  border: none;
  color: #fff;
  font-size: 1.1em;
  cursor: pointer;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  pointer-events: auto;
}
.sapphire-banner .footer-close:hover, .scarlet-banner .footer-close:hover {
  background: rgba(0,0,0,0.32);
}
