/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 10 2026 | 15:54:29 */
/* Таблицы: видимое оформление + скролл на мобильных */
.entry-content table,
.post-content table,
article table,
table {
  border-collapse: collapse !important;
  width: 100% !important;
  margin: 1em 0 !important;
}
table th,
table td {
  border: 1px solid #dcdce1 !important;
  padding: 10px 14px !important;
  text-align: left !important;
  vertical-align: top !important;
}
table th {
  background: #1f3864 !important;
  color: #fff !important;
}
table tr:nth-child(even) td {
  background: #f6f7f9 !important;
}
@media (max-width: 768px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    white-space: nowrap;
  }
}