.verified-badge {
  vertical-align: text-bottom;
  display: inline-block;
  animation: pop-in 0.5s ease-in-out;
  transition: transform 0.3s ease;
}
.verified-badge {
    width: 17px !important;
    height: 18px !important;
    margin-left: 6px;
    object-fit: unset !important;
    border-radius: 0 !important;
    margin-bottom: 1px !important;
  }

.verified-badge:hover {
  transform: scale(1.3) rotate(5deg);
}

@keyframes pop-in {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-20deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.verified-wrapper {
  position: relative;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 5px;
  position: absolute;
  bottom: 120%; 
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  pointer-events: none;
}

.verified-wrapper:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* New User Bagde */

.new-badge {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #7ea2bf;
  color: white;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 8px;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-family: 'Urbanist', sans-serif;
}



.new-badge:hover {
  transform: scale(1.2) rotate(2deg);
}

/* Matching animation */
@keyframes pop-in {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-20deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

/* Wrapper for new badge and tooltip */
.new-wrapper {
  position: relative;
  display: inline-block;
}

/* Tooltip for NEW badge */
.new-wrapper .tooltip-text {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 5px;
  position: absolute;
  bottom: 120%;
  left: 25px;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  pointer-events: none;
}

.new-wrapper:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
