/**
 * wpt-upvote-demo.css
 */

.upvote-demo-container {
    background-color: #ffffff88;
    border-radius: 1em;
    padding: 1em;
    box-shadow: 0 0 1em #44444444;
}

.upvote-demo-container h2 {
    font-size: 16pt;
    text-align: center;
}

.upvote-demo {
    display: flex;
    flex-direction: row;
    gap: 1em;
    font-size: 24pt;
    justify-content: center;
    margin-bottom: 1rem;
}

.upvote-demo.working .count {
    opacity: 0.25;
}

.upvote-demo .count {
    display: inline-block;
    text-align: center;
    min-width: 2em;
    transition: 0.3s;
}

.upvote-demo .upvote a {
    color: green;
}

.upvote-demo .downvote a {
    color: darkred;
}

.upvote-demo a {
    transition: 0.3s;
}

.upvote-demo a:hover {
    filter: brightness(1.5);
}

.upvote-demo.working * {
    cursor: wait;
}

figcaption {
    text-align: center;
}