/* Blog Post Table Styles
 * Scoped to .entry-content to avoid affecting corporate pages
 * ---------------------------------------------------------- */

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0 2em;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  overflow: hidden;
}

.entry-content table thead {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.entry-content table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  color: #ffffff;  /* White header text */
  border-bottom: 2px solid rgba(0, 212, 170, 0.3);
  white-space: nowrap;
}

.entry-content table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  vertical-align: top;
}

.entry-content table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.12) !important;
}

.entry-content table tbody tr:hover {
  background: rgba(0, 212, 170, 0.05);
}

.entry-content table tbody tr:last-child td {
  border-bottom: none;
}

/* Responsive: horizontal scroll on mobile */
@media (max-width: 768px) {
  .entry-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .entry-content table th,
  .entry-content table td {
    padding: 0.75rem 1rem;
    min-width: 120px;
  }
}
