.seotxt {
    margin: 50px auto;
}
/* Основной стиль таблицы */
.table-custom {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(31, 141, 171, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

/* Заголовки */
.table-custom th {
    background-color: #1f8dab;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 16px;
    text-align: center;
    border: 1px solid #1a7a94;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ячейки */
.table-custom td {
    padding: 10px 16px;
    text-align: center;
    border: 1px solid #e0eef2;
    color: #2c3e50;
}

/* Нумерация (левый столбец) */
.table-custom td:first-child {
    font-weight: 600;
    color: #1f8dab;
    background-color: #f7fbfc;
}

/* Чередование строк */
.table-custom tbody tr:nth-child(even) {
    background-color: #f7fbfc;
}

/* Hover-эффект */
.table-custom tbody tr:hover {
    background-color: #e6f4f8;
    transition: background-color 0.2s ease;
}

/* Акцент на частотах (второй столбец в каждой группе) */
.table-custom td:nth-child(2),
.table-custom td:nth-child(4),
.table-custom td:nth-child(6),
.table-custom td:nth-child(8) {
    font-weight: 500;
    color: #1a5a6e;
}

/* Адаптивность для маленьких экранов */
@media (max-width: 768px) {
    .table-custom {
        font-size: 12px;
    }
    .table-custom th,
    .table-custom td {
        padding: 6px 8px;
    }
}

.product-single .__details .tab-nav a.active, .product-single .__details .tab-nav a:focus, .product-single .__details .tab-nav a:hover {
    border-color: #1f8dab;
    color: #242424;
    background: #eee;
}