.vote-container {
    margin: 20px 0;
    text-align: center;
}

.vote-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.vote-buttons button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    background: linear-gradient(90deg, #4caf50, #81c784);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.vote-buttons button.downvote-button {
    background: linear-gradient(90deg, #f44336, #e57373) !important;
}

.vote-buttons button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.vote-buttons button:active {
    transform: scale(0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.vote-buttons button.disabled {
    cursor: not-allowed;
    opacity: 0.5;
    background: #bdbdbd;
    box-shadow: none;
}

.vote-buttons {
    margin-left: 8px;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
}

.vote-buttons button.downvote {
    color: #ffffff;
}