/* headsup.css */
.headsup-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 9999;
  padding: 1em;
  border-radius: 6px;
  font-size: 1.8em;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
}

.headsup-notification.show {
  opacity: 1;
}

body[data-theme="dark"] .headsup-notification {
  background: rgba(252, 252, 252, 0.9);
  color: #000;
}

body[data-theme="light"] .headsup-notification {
  background: rgba(0, 0, 0, 0.846);
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .headsup-notification {
	font-size: 1.5em;
  }
}

@media only screen and (max-width: 468px) {
  .headsup-notification {
	font-size: 1em;
  }
}