

/* Start:/bitrix/templates/gvozdevsoft_fings_s1/components/bitrix/news.list/spravochnik/style.css?17670911752119*/
.channel-section {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.channel-section:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.section-title {
    background: #f9f9f9;
    padding: 14px 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s;
}

.section-title:hover {
    background: #f1f1f1;
}

.section-title::after {
    content: "▸";
    font-size: 14px;
    transition: transform 0.3s;
}

.section-title.active::after {
    transform: rotate(90deg);
}

.section-items {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    background: #fff;
    transition: max-height 0.4s ease, padding 0.3s;
}

.section-items.open {
    padding: 10px 16px;
    max-height: 500px; /* ограничение раскрытия */
}

/* стили таблицы */
.channel-table {
    width: 100%;
    border-collapse: collapse;
    display: block;       /* превращаем таблицу в блочный контейнер */
    max-height: 300px;    /* высота для скролла */
    overflow-y: auto;     /* вертикальная прокрутка */
    overflow-x: hidden;   /* отключаем горизонтальную */
}

/* фиксируем заголовок */
.channel-table thead {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
}

/* оформление ячеек */
.channel-table th,
.channel-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.channel-table td:nth-child(2) {
    width: 100%;
}
.channel-table td:nth-child(1) {
    text-align: center;
    padding: 17px;
}
.channel-table th {
    font-weight: 600;
}

.channel-table tbody tr:hover {
    background: #f9f9f9;
}

.empty {
    font-style: italic;
    color: #999;
    padding: 8px 0;
}

/* End */
/* /bitrix/templates/gvozdevsoft_fings_s1/components/bitrix/news.list/spravochnik/style.css?17670911752119 */
