/* chinesefoodmenu 专用样式文件 */
/* Chinese Food Menu 表格样式 */

/* 主表格样式 - 保留原有的边框设计 */
table.cf-menu-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border: 1px solid #bbbddd;
}

table.cf-menu-table th,
table.cf-menu-table td {
    border: 1px solid #bbbddd;
    padding: 15px;
    text-align: center;
    vertical-align: middle;
}

table.cf-menu-table th {
    background: #f5f5f5;
    font-weight: bold;
    font-size: 0.95rem;
}

/* 第一列：英文菜名 */
.cf-menu-name {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

/* 第二列：拼音+汉字容器 */
.cf-pinyin-hanzi-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

/* 拼音+汉字分组 - 每个音节一组 */
.cf-word-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cf-pinyin-item {
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
    margin-bottom: 2px;
}

.cf-hanzi-item {
    font-size: 1.1rem;
    color: #cc0000;
    font-weight: bold;
    line-height: 1.4;
}

/* 第三列：播放按钮 */
.cf-sound-cell {
    min-width: 60px;
}

.cf-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: #007AFF;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
    transition: all 0.2s ease;
}

.cf-play-btn:hover {
    background: #0055aa;
    transform: scale(1.05);
}

.cf-play-btn:active {
    transform: scale(0.95);
}

.cf-play-btn.playing {
    background: #ff9500;
}

/* 分类链接区域 */
.cf-category-links {
    margin: 15px 0;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
}

.cf-category-links a {
    color: #0055aa;
    text-decoration: none;
    margin: 0 5px;
}

.cf-category-links a:hover {
    text-decoration: underline;
}

/* 移动端响应式适配 */
@media (max-width: 768px) {
    /* 表格改为块级布局 */
    table.cf-menu-table thead {
        display: none;
    }

    table.cf-menu-table tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #bbbddd;
        border-radius: 8px;
        overflow: hidden;
    }

    table.cf-menu-table td {
        display: block;
        width: 100% !important;
        border: none;
        border-bottom: 1px solid #eee;
        padding: 12px;
    }

    table.cf-menu-table td:last-child {
        border-bottom: none;
    }

    /* 菜名列 */
    .cf-menu-name {
        font-size: 1rem;
        font-weight: bold;
        background: #f9f9f9;
        padding: 10px;
    }

    /* 拼音+汉字区域 */
    .cf-pinyin-hanzi-container {
        gap: 12px;
        padding: 10px;
    }

    .cf-word-group {
        gap: 10px;
    }

    .cf-pinyin-item {
        font-size: 1.1rem;
    }

    .cf-hanzi-item {
        font-size: 1.3rem;
    }

    /* 播放按钮 */
    .cf-sound-cell {
        text-align: center;
        padding: 10px;
    }

    .cf-play-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    /* 分类链接 */
    .cf-category-links {
        font-size: 0.85rem;
    }

    .cf-category-links a {
        display: block;
        margin: 8px 0;
    }
}

/* 平板端适配 */
@media (min-width: 769px) and (max-width: 1024px) {
    table.cf-menu-table th,
    table.cf-menu-table td {
        padding: 10px;
        font-size: 0.9rem;
    }

    .cf-pinyin-item {
        font-size: 0.95rem;
    }

    .cf-hanzi-item {
        font-size: 1rem;
    }
}

/* 拼音高亮（可选） */
.cf-pinyin-item.highlight {
    color: #cc0000;
    font-weight: bold;
}

/* 汉字特殊标记（可选） */
.cf-hanzi-item.traditional {
    color: #666;
}
