/* 首页优化 - 2023年11月 - 强制优先级版本 */

/* 1. 优化标签显示 */
.tag-pill {
    display: inline-block !important;
    white-space: normal !important; /* 允许换行 */
    word-break: break-word !important; /* 在必要时可以在单词内换行 */
}

.document-table .col-tags {
    text-align: left !important; /* 左对齐 */
    padding-left: 5px !important; /* 添加左边距 */
    vertical-align: top !important;
}

.doc-tags {
    text-align: left !important; /* 左对齐 */
}

/* 2. 优化拓展学习列，确保链接不会溢出 */
.document-table .col-learning {
    word-break: break-all !important; /* 允许在任何字符处换行 */
    overflow-wrap: break-word !important; /* 确保长单词/URL会换行 */
}

/* 3. 优化操作列按钮 */
.document-table .col-actions {
    text-align: left !important; /* 左对齐 */
    padding-left: 5px !important; /* 添加左边距 */
}

.document-table .col-actions .btn {
    width: 70% !important; /* 缩小按钮宽度30% */
    display: inline-block !important;
}
