#outage-notice-banner {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #00477b;
  color: #fff;
  padding: 14px 48px 14px 24px;
  position: relative;
  z-index: 100000;
  font-family: 'Rubik', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

#outage-notice-banner .outage-notice-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #5bc8f5;
  color: #00477b;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

#outage-notice-banner p {
  margin: 0;
}

#outage-notice-banner strong {
  color: #5bc8f5;
}

#outage-notice-close-btn {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
  transition: color 0.2s;
}

#outage-notice-close-btn:hover {
  color: #E87200;
}

@media (max-width: 600px) {
  #outage-notice-banner {
    flex-direction: column;
    text-align: left;
    padding: 14px 40px 14px 16px;
  }
}
