/**
 * 会议标签 — 标签徽章样式
 */

/* ========== 标签容器 ========== */
.meeting-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
}

/* ========== 标签徽章 ========== */
.tag-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    background: #f0f5ff;
    color: #3b82f6;
    font-size: 0.75rem;
    line-height: 1.4;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.tag-badge:hover {
    background: #dbeafe;
    color: #2563eb;
}

.tag-badge.active {
    background: #3b82f6;
    color: #fff;
}

/* ========== 系统标签（如"导入"） ========== */
.tag-badge.tag-system {
    background: #fef3c7;
    color: #d97706;
    font-weight: 500;
}

.tag-badge.tag-system:hover {
    background: #fde68a;
}
