/* === TABLE STYLES === */
.presentation-table {
  width: 100%;
  max-width: 900px;
  margin: 3rem auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.presentation-table thead {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
}

.presentation-table th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 700;
  color: #001b1a;
  font-size: 1.125rem;
  border-bottom: 2px solid rgba(0, 27, 26, 0.1);
}

.presentation-table th:first-child {
  border-top-left-radius: 16px;
}

.presentation-table th:last-child {
  border-top-right-radius: 16px;
  text-align: center;
}

.presentation-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.2s ease;
}

.presentation-table tbody tr:hover {
  background-color: #f9fafb;
}

.presentation-table tbody tr:last-child {
  border-bottom: none;
}

.presentation-table td {
  padding: 1.5rem;
  font-size: 1rem;
  color: var(--color-text);
}

.presentation-table td:first-child {
  font-weight: 600;
  color: var(--color-text);
}

.presentation-table td:nth-child(2) {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.presentation-table td:last-child {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
}

/* Multi-column table styling */
.presentation-table.comparison-table {
  font-size: 0.85rem;
}

.presentation-table.comparison-table th {
  padding: 0.875rem;
  font-size: 0.9rem;
  vertical-align: top;
  line-height: 1.4;
}

.presentation-table.comparison-table td {
  padding: 0.875rem;
  font-size: 0.8rem;
  line-height: 1.5;
  vertical-align: top;
}

.presentation-table.comparison-table td:first-child {
  font-weight: 700;
  color: var(--color-text);
  min-width: 120px;
}

/* Table in side-by-side layout */
.table-wrapper .presentation-table {
  max-width: 100%;
  margin: 0;
}

@media (max-width: 768px) {
  .presentation-table {
    display: block;
    overflow-x: auto;
  }
  
  .presentation-table th,
  .presentation-table td {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .presentation-table td:last-child {
    font-size: 1.2rem;
    letter-spacing: 0.25rem;
  }
}

