.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: #E07A5F;
  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;
}

.guild-info {
  display: flex;
  padding: 10px;
  gap: 10px;
  align-self: anchor-center;
}

.guild-counts {
  color: #000;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 800;       
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  border: none;
  font-family: 'Urbanist', sans-serif;  
  display: grid;
  width: 55px;
  height: 45px;
}

.guild-info .online {
  background: linear-gradient(135deg, #66bb6a, #43a047); /* pastel green */
  color: #fff;
}

.guild-info .total {
  background: linear-gradient(135deg, #64b5f6, #1976d2); /* pastel blue */
  color: #fff;
}

.guild-info .votes {
  background: linear-gradient(135deg, #ffd54f, #ffb300); /* pastel gold */
  color: #fff;
}

body.dark .guild-info .online {
  background: linear-gradient(135deg, #388e3c, #1b5e20); /* deeper green */
  color: #fff;
}

body.dark .guild-info .total {
  background: linear-gradient(135deg, #1976d2, #0d47a1); /* deeper blue */
  color: #fff;
}

body.dark .guild-info .votes {
  background: linear-gradient(135deg, #f5b516, #d26504);
  color: #fff;
}

/* Keep the same hover polish */
body.dark .guild-counts:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.45);
  transition: all 0.2s ease;
}



/* Shared hover effect for all counts */
.guild-counts:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  transition: all 0.2s ease;
}


.guild-title {
  font-size: 17px;
}
.guild-text {
  font-size: 10px;
}


