/* Custom Table Styles */
.post table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.post th {
  background-color: #2c3e50;
  color: white;
  padding: 12px;
  text-align: left;
  font-weight: 600;
}

.post td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

.post tr:nth-child(even) {
  background-color: #f8f9fa;
}

.post tr:hover {
  background-color: #e8f4f8;
}

.post th:first-child {
  border-radius: 6px 0 0 0;
}

.post th:last-child {
  border-radius: 0 6px 0 0;
}
