/* ==========================================
   GLOBAL STYLES & REUSABLE COMPONENTS
   ========================================== */

/* Badge Container - Perfect Circle Proportions */
.verify-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
    vertical-align: middle;
    width: 20px; /* Slightly larger to accommodate the white border */
    height: 20px;
}

.verify-badge svg {
    width: 100%;
    height: 100%;
}

/* Make the badge clickable */
.verify-badge.clickable {
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.verify-badge.clickable:hover {
    transform: scale(1.1);
}