.safe-web .cursor {
  position: absolute;
  width: auto;
  height: auto;
  padding: 10px 10px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border-radius: var(--radius, 1000px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
  opacity: 0;
  white-space: nowrap;
  z-index: 999;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.safe-web .cursor.active {
  opacity: 1;
}

.safe-web .cursor .chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 12px;
  margin: 0 5px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1000px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
