.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
.tip-notification {
  position: fixed;
  top: 95px;
  right: -625px;
  padding: 15px 25px;
  border-radius: 12px;
  z-index: 9999;
  color: #fff;
  font-weight: 500;
  font-family: system-ui, sans-serif;
  text-align: center;
  background: rgba(15, 15, 15, 0.5);
  backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.59);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: all 0.6s ease-in-out;
  width: 200px;
}
.tip-notification.visible {
  right: 11px;
  opacity: 1;
}

.tip-notification::before {
    content: "💡 ";
    font-size: 1.2em;
}
