/* Container for the applause button and count */
.wp-applause-container {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inter;
    gap: 5px;
    color: #333;
    font-size: 13px;
}

/* Applause button style - NO background */
.wp-applause-button {
    background: none; /* Remove background */
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: left;
    position: relative;
    font-size: 36px;
    line-height: 1;
    padding: 0px;
    transition: transform 0.1s ease;
}


/* Hover effect - no background */
.wp-applause-button:hover {
    transform: scale(1.1);
    background: none; /* Ensure no background on hover */
}

/* Applause count circle styling */
.wp-applause-count {
    font-size: 13px;
    font-family: Inter;
    font-weight: 500;
    color: black;
    display: inline-block;
    background-color: none; /* Circle background color */
    border-radius: none;
    padding: 0px;
    margin-left: 0px;
}

/* Burst animation effect */
.wp-applause-button.burst {
    animation: clap-burst 0.3s ease;
}

@keyframes clap-burst {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1);
    }
}

/* Remove purple focus or active background */
.wp-applause-button:focus,
.wp-applause-button:active {
    outline: none;  /* Remove focus outline */
    background: none; /* Remove any background on focus or active state */
}

/* Prevent background on hover after being clicked */
.wp-applause-button:active:hover {
    background: none; /* Prevent hover background when clicked */
}