/* G8REVIEWU1 页面专属样式 */

/* 调整卡片内边距，使其更适合阅读 */
.review-card-content {
    padding: 1.5rem; /* 24px */
}

/* 标题样式 */
.review-section-title {
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    margin-bottom: 1rem; /* 16px */
    border-bottom: 2px solid; /* 颜色将由主题定义 */
    padding-bottom: 0.5rem; /* 8px */
}

/* 表格样式 */
.review-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem; /* 16px */
    box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.review-table th,
.review-table td {
    padding: 0.75rem; /* 12px */
    text-align: left;
    border-bottom: 1px solid; /* 颜色将由主题定义 */
}

/* 主题颜色应用 */
.theme-parchment .review-section-title {
    border-color: #dcd1b8;
}

.theme-parchment .review-table th {
    background-color: #f5f1e6; /* 类似 flip-card-front */
}

.theme-parchment .review-table td {
    background-color: #fffdf5; /* 类似 card-review */
}

.theme-parchment .review-table,
.theme-parchment .review-table th,
.theme-parchment .review-table td {
    border-color: #dcd1b8;
}

/* 重点词汇标签 */
.vocab-tag {
    display: inline-block;
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
    padding: 0.25rem 0.75rem; /* 4px 12px */
    border-radius: 9999px; /* rounded-full */
    margin: 0.25rem; /* 4px */
    border: 1px solid;
}

.theme-parchment .vocab-tag {
    background-color: #fffbf0;
    border-color: #dcd1b8;
    color: #4e342e;
}
