/* Voting System Styles - No gradients or emojis */

.voting-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.voting-section h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.voting-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.vote-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.vote-btn {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.vote-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.vote-btn:active {
    transform: translateY(0);
}

.vote-btn.upvote:hover {
    border-color: var(--success);
    color: var(--success);
}

.vote-btn.downvote:hover {
    border-color: #ef4444;
    color: #ef4444;
}

.vote-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vote-score {
    padding: 0.75rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid var(--accent);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--accent);
    min-width: 80px;
    text-align: center;
}

.vote-score.positive {
    color: var(--success);
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.1);
}

.vote-score.negative {
    color: #ef4444;
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.vote-details {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    align-items: center;
}

.vote-count {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.vote-info {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.vote-info strong {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .voting-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .vote-buttons {
        width: 100%;
    }
    
    .vote-btn {
        flex: 1;
        justify-content: center;
    }
    
    .vote-score {
        width: 100%;
    }
}
