/* Voting System Styles */
.voting-section {
    margin: 20px 0;
}

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

.vote-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.vote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.vote-btn.like-btn:hover {
    background: #e8f5e8;
    border-color: #4caf50;
}

.vote-btn.dislike-btn:hover {
    background: #ffe8e8;
    border-color: #f44336;
}

.vote-btn.active {
    font-weight: bold;
}

.vote-btn.like-btn.active {
    background: #4caf50;
    color: white;
    border-color: #4caf50;
}

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

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

.vote-icon {
    font-size: 16px;
}

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

/* Responsive voting styles */
@media(max-width:800px){
    .vote-buttons {
        gap: 10px;
    }
    
    .vote-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .vote-icon {
        font-size: 14px;
    }
}
