/* ctw-table.css — стилизованная таблица для сравнений и данных.
   Класс: ctw-table. Применять на <table class="ctw-table">.
   Все селекторы скоуплены префиксом ctw- — безопасны для любой темы WordPress. */

.ctw-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.95em;
  overflow-x: auto;
  display: block;
}

.ctw-table thead {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.ctw-table tbody {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.ctw-table th {
  background: #0f6e5c;
  color: #ffffff;
  text-align: left;
  padding: 10px 14px;
  font-weight: 600;
}

.ctw-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #e2e8e6;
}

.ctw-table tbody tr:nth-child(even) {
  background: #f4f9f8;
}

.ctw-table tbody tr:hover {
  background: #e8f3f0;
}

@media (max-width: 600px) {
  .ctw-table {
    font-size: 0.85em;
  }
  .ctw-table th,
  .ctw-table td {
    padding: 7px 8px;
  }
}
