#sharkAlertPopup {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 25vw;
  max-width: 25vw;
  z-index: 2147483647;
  background: #13253f;
  color: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  padding: 12px 14px;
  display: none;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  border-top: 4px solid #0c83dc;
}

#sharkAlertPopup.event-maintenance {
  border-top-color: #f59e0b;
}

#sharkAlertPopup.event-emergency {
  border-top-color: #dc2626;
}

#sharkAlertMiniWidget {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  z-index: 2147483647;
  background: #13253f;
  color: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  font-family: Arial, sans-serif;
  display: none;
  box-sizing: border-box;
  transition: width 0.2s ease;
  cursor: pointer;
}

#sharkAlertMiniWidget.shark-expanded {
  width: 25vw;
  min-width: 230px;
}

#sharkAlertMiniBar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  justify-content: center;
}

#sharkAlertMiniExpanded {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.2s ease, opacity 0.15s ease;
  width: 100%;
  box-sizing: border-box;
}

#sharkAlertMiniWidget.shark-expanded #sharkAlertMiniExpanded {
  max-height: 400px;
  opacity: 1;
  padding: 0 14px 12px;
  border-top: 1px solid #1e3a5f;
}

.sharkAlertHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sharkAlertMiniHeader {
  margin-top: 8px;
}

.sharkAlertTitleWrap {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.sharkAlertTitle {
  font-weight: 700;
  font-size: 16px;
  margin: 0;
  flex: 1;
}

.sharkAlertActions,
.sharkAlertNavigation {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sharkAlertNavigation {
  margin-top: 8px;
  justify-content: space-between;
}

.sharkAlertButton {
  border: 0;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 13px;
}

.sharkAlertButton:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.sharkAlertExpandButton {
  background: #2f74ff;
  color: #fff;
  width: 78px;
  text-align: center;
}

.sharkAlertCloseButton,
.sharkAlertNavButton {
  background: #394a68;
  color: #fff;
}

.sharkAlertMessage {
  margin-top: 8px;
  line-height: 1.35;
  font-size: 14px;
}

.sharkAlertMessageOneLine {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sharkAlertMessage a:visited {
   color: white;
}
.sharkAlertMessage a {
  color: white;
  margin-left: 6px;
  padding-top: 5px;
  padding-bottom: 10px;
}

.sharkAlertLinkHidden {
  display: none;
}

.sharkAlertEventBadge {
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 1px 7px;
  margin-right: 6px;
  display: inline-block;
}

.sharkAlertEventBadge.event-information {
  background: #1a4a7a;
  color: #9cc3ff;
}

.sharkAlertEventBadge.event-maintenance {
  background: #5a3e00;
  color: #fcd68a;
}

.sharkAlertEventBadge.event-emergency {
  background: #5a0000;
  color: #fecaca;
}
.sharkAlertCenterLink {
  white-space: nowrap;
  font-size: 12px;
}

.sharkAlertHideButton {
  background: transparent;
  color: #9cc3ff;
  border: 0;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0 2px;
}

.sharkAlertMiniLabel {
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
}

.sharkAlertHideButton:hover {
  color: #fff;
}

.sharkAlertMiniEmpty {
  margin: 8px 0;
  font-size: 14px;
  color: #fff;
}
