.upvote-container {
    margin: 20px 0;
    text-align: center;
}

.upvote-button {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.upvote-button:hover:not(.disabled) {
    background: #e9e9e9;
}

.upvote-button.voted {
    background: #4CAF50;
    color: white;
    border-color: #3e8e41;
}

.upvote-button.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.upvote-icon {
    font-weight: bold;
}

.upvote-count {
    font-weight: bold;
}

.upvote-message {
    display: none;
    margin-left: 10px;
    color: #4CAF50;
    font-style: italic;
}