/* FilesShare 自定义图标 - 纯CSS实现，无需外部字体文件 */

/* 图标基础样式 */
.icon {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    text-rendering: auto;
    speak: none;
}

/* 警告图标 */
.icon-warning::before {
    content: '\26A0';
}

/* 灯泡图标 */
.icon-lightbulb::before {
    content: '\2728';
}

/* 文件夹图标 */
.icon-folder::before {
    content: '\1F4C1';
}

/* 勾选图标 */
.icon-check::before {
    content: '\2714';
}

/* 叉号图标 */
.icon-cross::before {
    content: '\2716';
}

/* 盒子图标 */
.icon-box::before {
    content: '\1F4E6';
}

/* 日历图标 */
.icon-calendar::before {
    content: '\1F4C5';
}

/* 时钟图标 */
.icon-clock::before {
    content: '\23F3';
}

/* 地球图标 */
.icon-globe::before {
    content: '\1F30E';
}

/* 文件图标 */
.icon-file::before {
    content: '\1F4C4';
}

/* 下载图标 */
.icon-download::before {
    content: '\2B07';
}

/* 预览图标 */
.icon-preview::before {
    content: '\1F50D';
}

/* 删除图标 */
.icon-delete::before {
    content: '\1F5D1';
}

/* 信息图标 */
.icon-info::before {
    content: '\2139';
}

/* 上传图标 */
.icon-upload::before {
    content: '\2B06';
}

/* 链接图标 */
.icon-link::before {
    content: '\1F517';
}

/* 图片图标 */
.icon-image::before {
    content: '\1F4F7';
}

/* 密码图标 */
.icon-lock::before {
    content: '\1F510';
}

/* 公共图标 */
.icon-public::before {
    content: '\1F4AC';
}

/* 私密图标 */
.icon-private::before {
    content: '\1F512';
}

/* 刷新图标 */
.icon-refresh::before {
    content: '\27F3';
}

/* 复制图标 */
.icon-copy::before {
    content: '\1F4CB';
}

/* 设置图标 */
.icon-settings::before {
    content: '\2699';
}

/* 按钮图标样式 */
.btn .icon {
    margin-right: 4px;
    vertical-align: middle;
}