/**
 * Emoji Reactions Styles
 */

.emoji-reactions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin: 1.5rem 0;
    padding: 1rem 0;
    background: #f9f9f9;
    border-radius: 8px;
}

.emoji-reaction-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
}

.emoji-reaction-btn:hover {
    background: #f5f5f5;
    border-color: #bbb;
    transform: translateY(-1px);
}

.emoji-reaction-btn.active {
    background: #e3f2fd;
    border-color: #2196f3;
    color: #1976d2;
}

.emoji-reaction-btn:focus {
    outline: 2px solid #2196f3;
    outline-offset: 2px;
}

.emoji-reaction-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.emoji-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.emoji-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.emoji-count {
    font-weight: 600;
    min-width: 1.5rem;
    text-align: center;
}

.emoji-reactions-honey-pot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.emoji-reactions-recaptcha-terms {
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.emoji-reactions-recaptcha-terms a {
    color: #1976d2;
    text-decoration: underline;
}

.emoji-reactions-recaptcha-terms a:hover {
    color: #1565c0;
}

/* Loading state */
.emoji-reactions.loading .emoji-reaction-btn {
    opacity: 0.6;
    pointer-events: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .emoji-reactions {
        gap: 0.375rem;
        padding: 0.75rem 0;
    }

    .emoji-reaction-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
        gap: 0.375rem;
    }

    .emoji-icon {
        width: 18px;
        height: 18px;
    }
}

