/* 工具页面表格基础样式 */
.tools-library-table {
    border-collapse: collapse;
    width: 100%;
}

.tools-library-table th,
.tools-library-table td {
    vertical-align: middle;
}

/* 表头样式 - 青色主题 (香精致敏原) */
.table-header-cyan {
    background-color: #1b5d65 !important;
    height: 80px;
}

.table-header-cyan th {
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 700;
    padding-left: 24px !important;
    text-align: left !important;
    line-height: 24px;
}

/* 表头样式 - 橙色主题 (新食品原料) */
.table-header-orange {
    background-color: #fb8b05 !important;
    height: 80px;
    border: none !important;
}

.table-header-orange th {
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 700;
    padding-left: 24px !important;
    text-align: left !important;
    line-height: 24px;
    border: none !important;
}

/* 展开箭头动画 */
.expand-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.expand-icon.expanded {
    transform: rotate(180deg);
}

/* 详情行显示控制 - 香精致敏原 */
.allergen-detail-row {
    display: none;
    background: #f9fafb;
}

.allergen-detail-row.show {
    display: table-row;
}

/* 详情行显示控制 - 新食品原料 */
.food-detail-row {
    display: none;
    background: #f9fafb;
}

.food-detail-row.show {
    display: table-row;
}

/* 移动端详情 */
.mobile-detail-section {
    display: none;
}

.mobile-detail-section.show {
    display: block;
}

/* 响应式网格 */
@media (max-width: 768px) {

    .allergen-detail-grid,
    .food-detail-grid {
        grid-template-columns: 1fr !important;
    }
}