/* ============================================
   CORESYSTEM - REACTIONS.CSS
   ============================================
   Styles pour le module de gestion des réactions
   Contient les styles pour les boutons de réaction,
   les emojis et les compteurs de réactions
   ============================================ */

/* Styles pour les réactions */
.comment-reactions {
    display: flex !important;
    gap: 6px;
    margin-top: 0;
    flex-wrap: wrap;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: auto;
}

.reaction-button {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: rgba(116, 157, 145, 0.25);
    border: 1px solid rgba(116, 157, 145, 0.6);
    border-radius: 6px;
    color: #749d91;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.2s ease;
    font-family: 'Source Code Pro', monospace;
    position: relative;
    z-index: 10;
    pointer-events: auto !important;
    user-select: none;
    text-shadow: 0 0 4px rgba(116, 157, 145, 0.3);
}

.reaction-button:hover {
    background: rgba(116, 157, 145, 0.25);
    border-color: rgba(116, 157, 145, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(116, 157, 145, 0.25);
}

.reaction-button.active {
    background: rgba(49, 176, 134, 0.3);
    border-color: #31b086;
    color: #31b086;
}

.reaction-emoji {
    font-size: 14px;
}

.reaction-count {
    font-weight: 600;
    font-size: 11px;
}



