.bulk-create-input-history {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.bulk-create-input-history-label {
    flex: none;
    margin-right: 2px;
    color: var(--bulk-create-muted);
    font-size: 12px;
    font-weight: 700;
}

.bulk-create-input-history-tag {
    max-width: min(240px, 100%);
    min-height: 30px;
    overflow: hidden;
    padding: 4px 10px;
    border: 1px solid #e7c9d5;
    border-radius: 999px;
    background: #fff7fa;
    color: var(--bulk-create-accent-dark);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bulk-create-input-history-tag:hover,
.bulk-create-input-history-tag:focus-visible {
    border-color: var(--bulk-create-accent);
    background: #fff;
}

.bulk-create-input-history-tag:focus-visible {
    outline: 3px solid rgba(214, 66, 120, .18);
    outline-offset: 1px;
}

@media (max-width: 640px) {
    .bulk-create-input-history {
        align-items: flex-start;
    }

    .bulk-create-input-history-label {
        width: 100%;
        margin-bottom: 1px;
    }
}
