/* Основной контейнер таблицы */
.tabu-custom {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e5e5e5;
    table-layout: fixed;
}

/* Главный заголовок */
.tabu-main-title th {
    background-color: #157c2a !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-align: center;
    padding: 16px;
    text-transform: uppercase;
    border: 1px solid #157c2a;
}

/* Строки-заголовки (Аккордеон) */
.tabu-header {
    background-color: #f5f5f5 !important;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.tabu-header:hover {
    background-color: #ededed !important;
}

.tabu-header td {
    color: #1a1a1a !important;
    font-weight: 700 !important;
    text-align: left; /* Изменено на лево для одной колонки */
    padding: 14px 20px;
    border: 1px solid #e5e5e5;
}

/* Иконка плюса/минуса */
.tabu-icon {
    display: inline-block;
    width: 18px;
    font-family: monospace;
    margin-right: 10px;
    font-weight: bold;
}

/* Скрытая строка с контентом */
.tabu-child 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-child {
    display: table-row;
}

.tabu-custom.is-initialized .tabu-child {
    display: none;
}

.tabu-custom.is-initialized .tabu-child.is-visible {
    display: table-row !important;
}

.tabu-header.active .tabu-icon {
    color: #157c2a;
}
