/* Hide original text and SVG */
.watermark span {
  font-size: 0 !important;
}

.watermark svg {
  display: none !important;
}

/* Inject "Zikomo" text */
.watermark span::before {
  content: "Copyright (c) Zikomo Solutions Ltd.";
  font-size: 10px;
  /* Adjust as needed */
  color: inherit;
}

/* Override link href */
.watermark {
  pointer-events: none;
  /* Prevent default click */
}

.watermark::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: auto;
}

/* Optional: add link behavior to the whole watermark */
.watermark::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
}

.watermark {
  position: relative;
}

/* Use JavaScript-free hack to redirect if needed */
.watermark::after {
  content: "";
  display: block;
  cursor: pointer;
}

.watermark:has(span::before) {
  cursor: pointer;
}

/* Hide scrollbars */
.flex {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.flex::-webkit-scrollbar {
  display: none;
}


audio {
  display: none;
  visibility: hidden;
}