@charset "UTF-8";
/*
Theme Name: ShyqGroup UI
Author: ShyqGroup
Author URI: https://shyqgroup.com
Description: 基于 DeePress 开发框架定制的 ShyqGroup 官方网站专用主题
Version: 1.0.2
*/

/* 
 * 样式文件已拆分优化
 * 
 * 结构说明：
 * 1. assets/css/global.css          - 全局重置与基础样式
 * 2. assets/css/header-footer.css   - 头部、导航、页脚
 * 3. assets/css/posts.css           - 文章列表、卡片、分页
 * 4. assets/css/home.css            - 首页专用 (仅首页加载)
 * 5. assets/css/single-product.css  - 产品详情页专用 (仅产品页加载)
 * 6. assets/css/blocks/             - 独立区块样式
 * 
 * 所有样式文件均在 functions.php 中通过 wp_enqueue_style 加载
 */

/* =========================================
   Global Table Styles
   ========================================= */
/* Target both standard tables and WP block tables */
table,
.wp-block-table table {
    width: 100%;
    max-width: 80%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 auto 1.5rem auto;
    font-size: 15px;
}


/* Cells */
table th,
table td,
.wp-block-table table th,
.wp-block-table table td {
    padding: 12px 15px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #6b8ab9; /* Blue-ish border */
}

/* Headers - Standard th */
table th,
.wp-block-table table th {
    background-color: #00254d;
    color: #ffffff;
    font-weight: 700;
    text-transform: capitalize;
    border-color: #00254d;
}

/* Headers - First row of tbody (fallback for WP tables without thead) */
.wp-block-table table tbody tr:first-child td {
    background-color: #00254d;
    color: #ffffff;
    font-weight: 700;
    border-color: #00254d;
}

/* Responsive Table Wrapper */
@media screen and (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
