/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/* .username {

    color: white;
    font-size: 12px;
    border-radius: 25px;
    text-align: center;
    padding: 6px;
    position: absolute;
    margin-left: 5px;
} */

.wpd-profile-verification-status p {
    text-align: center;
}

.wpd-profile-verification-status.verified {
    color: rgb(255, 255, 255);
}

.wpd-profile-verification-status.pending {
    color: blue;
}

.user-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: rgb(255, 204, 0); /* light green background */
    color:rgb(57, 57, 57); /* dark green text */
    border-radius: 20px;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: 600;
}

.user-verified-icon-wrapper {
    background-color:rgb(57, 57, 57); /* green circle background */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.user-verified-icon {
    color:rgb(255, 255, 255);
    font-size: 12px;
}