/*
 * 残余页面样式 — Bootstrap CDN + Element Plus CDN + _Layout 覆写层 之外的补充
 * 主要是管理后台表格内联样式难以覆盖的细节
 */

/* 表格内紧凑代码 */
.table code { font-size: 0.85em; }

/* 表格缩略图 */
.table img.object-fit-cover { object-fit: cover; }

/* 表格中的文本截断 */
.text-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* 小字体 */
.text-xs { font-size: 11px; }
.text-small { font-size: 13px; }

/* 管理后台表单帮助文字 */
.form-help { font-size: 12px; color: var(--el-text-color-secondary); margin-top: 4px; }

/* 最大宽度居中容器 */
.max-w-md { max-width: 600px; margin: 0 auto; }

/* 自定义文件选择按钮 */
input[type="file"]::file-selector-button {
    padding: 6px 14px; margin-right: 10px;
    border: none; border-radius: 16px;
    background: var(--el-color-primary-light-9, #ecf5ff);
    color: var(--el-color-primary, #409EFF);
    font-size: 13px; cursor: pointer;
}
