.post-container {
  max-width: 800px;
  margin: 30px auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.post-container h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 10px;
}

.post-container p {
  margin: 15px 0;
}

.post-container img {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.vote-buttons {
  margin-top: 30px;
}

.vote-buttons button {
  padding: 10px 20px;
  margin-right: 15px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.vote-buttons button[name="vote"][value="trust"] {
  background-color: #4CAF50;
  color: white;
}

.vote-buttons button[name="vote"][value="trust"]:hover {
  background-color: #45a049;
}

.vote-buttons button[name="vote"][value="reject"] {
  background-color: #f44336;
  color: white;
}

.vote-buttons button[name="vote"][value="reject"]:hover {
  background-color: #e53935;
}

.vote-result {
  margin-top: 20px;
  font-size: 18px;
  color: #555;
}

.login-reminder {
  margin-top: 20px;
  padding: 15px;
  background-color: #ffe8e8;
  color: #a33;
  border-radius: 5px;
}