.t794__arrow {
    display: none !important;
}

.verified-badge {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease;
  position: relative;
  cursor: default;
}

.verified-badge:hover {
  opacity: 0.6;
}

.verified-badge::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 200px;
  text-align: center;
}

.verified-badge:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

@media (max-width: 480px) {
  .verified-badge::after {
    left: auto;
    right: 0;
    transform: none;
    bottom: 130%;
  }

  .verified-badge:hover::after {
    transform: none;
  }
}