/* 后台管理图标样式 - 黑白绿配色 */

/* 图标字体 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* 图标样式 */
.icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    text-align: center;
    margin-right: 8px;
}

.icon-large {
    width: 24px;
    height: 24px;
    font-size: 18px;
}

.icon-xl {
    width: 32px;
    height: 32px;
    font-size: 24px;
}

/* 具体图标类 */
.icon-dashboard::before { content: "\f080"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-tasks::before { content: "\f0ae"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-users::before { content: "\f007"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-records::before { content: "\f1c0"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-media::before { content: "\f1c8"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-settings::before { content: "\f013"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-logout::before { content: "\f2f5"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-add::before { content: "\f067"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-edit::before { content: "\f044"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-delete::before { content: "\f1f8"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-view::before { content: "\f06e"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-toggle::before { content: "\f06e"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-save::before { content: "\f0c7"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-back::before { content: "\f060"; font-family: "Font Awesome 6 Free"; font-weight: 900; }

/* 统计图标 */
.stat-icon {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 10px;
}

/* 状态图标 */
.status-active::before { content: "\f058"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: #4CAF50; }
.status-inactive::before { content: "\f057"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: #f56c6c; }

/* 用户头像图标 */
.user-avatar-icon {
    background: #4CAF50;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 10px;
}

/* 活动图标 */
.activity-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
}

.activity-user {
    background: #4CAF50;
    color: white;
}

.activity-task {
    background: #2196F3;
    color: white;
}

