/* Styles for pages in templates/main/pages to make tables show visible lines and improved spacing */
:root{
  --table-border: #cbd5e1; /* slate-300 */
  --table-head: #f8fafc; /* light */
  --muted: #6b7280;
}
.doc-content{word-wrap:break-word}
.doc-table{
  width:100%;
  border-collapse:collapse;
  margin:1rem 0;
  font-size:0.95rem;
}
.doc-table th, .doc-table td{
  border:1px solid var(--table-border);
  padding:0.55rem 0.7rem;
  vertical-align:top;
}
.doc-table thead th{
  background:var(--table-head);
  font-weight:600;
  color:#0f172a;
}
.doc-table tbody tr:nth-child(even){
  background:#fbfdff;
}
.doc-table td{color:#111827}
.doc-table caption{caption-side:bottom;color:var(--muted);font-size:0.9rem;margin-top:0.5rem}
@media (max-width:768px){
  .doc-table th, .doc-table td{padding:0.45rem}
}
