
.vote-box {
    margin-top: 15px;
    padding: 10px;
    border-top: 1px solid #ccc;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
}
.vote-btn, .share-btn {
    background: #f4f4f4;
    border: 1px solid #ccc;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s;
}
.vote-btn:hover, .share-btn:hover {
    background: #e0e0e0;
}
.vote-btn.voted {
    background: #4caf50;
    color: white;
    border-color: #4caf50;
}
.vote-btn.dislike.voted {
    background: #f44336;
    border-color: #f44336;
}
