/**
 * Rifnote Post Listings and Styles
 *
 * Styles for the Reaction System.
 */
.rpls-reaction-wrapper {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.rpls-reaction-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.rpls-reaction-button:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.rpls-reaction-icon {
    font-size: 1.2em;
}

.rpls-reaction-button.processing {
    opacity: 0.7;
    cursor: wait;
}

.rpls-reaction-count.rpls-count-hidden {
    display: none;
}