/* Share buttons styling */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
}

.share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.share-btn.whatsapp {
    background-color: #25D366;
}

.share-btn.whatsapp:hover {
    background-color: #1da851;
}

.share-btn.twitter {
    background-color: #1DA1F2;
}

.share-btn.twitter:hover {
    background-color: #0d8bd9;
}

.share-btn.facebook {
    background-color: #1877F2;
}

.share-btn.facebook:hover {
    background-color: #0b5ccc;
}

.share-btn.copy-link {
    background-color: #6c757d;
}

.share-btn.copy-link:hover {
    background-color: #545b62;
}

/* Bottom share buttons - larger with text */
.bottom-share {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 30px;
}

.bottom-share .share-btn {
    padding: 10px 16px;
    font-size: 15px;
}

/* Compact share buttons for header */
.share-buttons.compact {
    gap: 8px;
    margin: 0;
}

.share-buttons.compact .share-btn {
    padding: 6px;
    min-width: 32px;
    border-radius: 4px;
}

/* Meta layout */
.qa-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.qa-meta-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.qa-meta-right {
    flex-shrink: 0;
}

/* Voting section */
.qa-voting-section {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

.voting-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.vote-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.vote-btn:hover {
    border-color: #e67e22;
    background: #fdf6e3;
}

.vote-btn.active {
    border-color: #e67e22;
    background: #e67e22;
    color: white;
}

.vote-btn.thumbs-up:hover {
    border-color: #27ae60;
    background: #d5f4e6;
}

.vote-btn.thumbs-up.active {
    border-color: #27ae60;
    background: #27ae60;
}

.vote-btn.thumbs-down:hover {
    border-color: #e74c3c;
    background: #fdf2f2;
}

.vote-btn.thumbs-down.active {
    border-color: #e74c3c;
    background: #e74c3c;
}

.vote-count {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .qa-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .qa-meta-right {
        align-self: flex-end;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .share-btn {
        padding: 10px;
        min-width: 44px;
        justify-content: center;
    }
    
    /* Keep text for bottom buttons on mobile */
    .bottom-share .share-btn {
        padding: 12px 16px;
    }
    
    .voting-buttons {
        justify-content: center;
    }
}