/* Основной контейнер таблицы */
.tabu-custom-nasos {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e5e5e5;
    table-layout: fixed;
}

/* Главный заголовок (FAQ) */
.tabu-main-title-nasos th {
    background-color: #282e6a !important; /* Тот самый темно-синий цвет */
    color: #ffffff !important;
    font-weight: 700 !important;
    text-align: center;
    padding: 16px;
    text-transform: uppercase;
    border: 1px solid #282e6a;
}

/* Строки-заголовки (Аккордеон) */
.tabu-header-nasos {
    background-color: #f5f5f5 !important;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.tabu-header-nasos:hover {
    background-color: #ededed !important;
}

.tabu-header-nasos td {
    color: #1a1a1a !important;
    font-weight: 700 !important;
    text-align: left;
    padding: 14px 20px;
    border: 1px solid #e5e5e5;
}

/* Иконка плюса/минуса */
.tabu-icon-nasos {
    display: inline-block;
    width: 18px;
    font-family: monospace;
    margin-right: 10px;
    font-weight: bold;
}

/* Скрытая строка с контентом */
.tabu-child-nasos td {
    background-color: #ffffff !important;
    border: 1px solid #e5e5e5;
    color: #1a1a1a;
    padding: 15px 45px;
    white-space: normal;
    word-wrap: break-word;
    vertical-align: middle;
    line-height: 1.5;
}

/* Логика отображения (JS-совместимость) */
.tabu-custom-nasos.is-initialized .tabu-child-nasos {
    display: none;
}

.tabu-custom-nasos.is-initialized .tabu-child-nasos.is-visible {
    display: table-row !important;
}

.tabu-header-nasos.active .tabu-icon-nasos {
    color: #282e6a; /* Цвет иконки при открытии в тон заголовка */
}
