/* ==========================================================================
   WorkHub 全局配色方案 —— 标签 / 徽章
   --------------------------------------------------------------------------
   统一入口：所有页面的标签颜色统一从这里（CSS 变量）引用，
   避免各模板各自写死颜色导致风格不统一、可读性差。
   配色原则：浅色底 + 深色字，避免深紫等深色高饱和底色，保证阅读舒适。
   若需调整配色，只需修改下方 :root 中的变量即可全局生效。
   ========================================================================== */
:root {
    /* 中性标签（默认） */
    --tag-bg: #ecf0f1;
    --tag-text: #555555;
    /* 企业标签：浅绿底 / 深绿字 */
    --tag-ent-bg: #d5f5e3;
    --tag-ent-text: #1e8449;
    /* 联系人标签：浅橙底 / 深橙字 */
    --tag-contact-bg: #fdebd0;
    --tag-contact-text: #ca6f1e;
    /* 员工标签：浅黄底 / 黑字 */
    --tag-user-bg: #fff8e1;
    --tag-user-text: #000000;
}

/* ---- 企业标签 ---- */
.note-tag-ent,
.tag-enterprise,
.enterprise-tag-ent {
    background: var(--tag-ent-bg);
    color: var(--tag-ent-text);
}

/* ---- 联系人标签 ---- */
.note-tag-contact,
.tag-contact {
    background: var(--tag-contact-bg);
    color: var(--tag-contact-text);
}

/* ---- 员工标签 ---- */
.note-tag-user,
.tag-user,
.enterprise-tag-user {
    background: var(--tag-user-bg);
    color: var(--tag-user-text);
}
