#wp-admin-bar-cceverywhere_adminbar_btn a {
    text-decoration: none !important;
}
#wp-admin-bar-cceverywhere_adminbar_btn .ab-icon {
    height: 5px;
    width: 13px;
    margin-top: 2px;
    padding-right: 5px !important;
    margin-right: 5px !important;
    text-decoration: none !important;
}
#wp-admin-bar-cceverywhere_adminbar_btn .ab-icon:before {
    font-size: 20px;
}

/* Running state */
#wp-admin-bar-cceverywhere_adminbar_btn a.cce-running {
    position: relative;
    pointer-events: none;
}

/* Create a pseudo-element for the animated bottom border */
#wp-admin-bar-cceverywhere_adminbar_btn a.cce-running::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px; /* thickness of the animated border */
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.8), rgba(255,255,255,0));
    animation: cce-border-move 1s linear infinite;
}

/* Animate gradient moving left to right */
@keyframes cce-border-move {
    0% {
        transform: translateX(-100%);
        opacity: 0.5;
    }
    50% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0.5;
    }
}
